Skip to content

Commit

Permalink
Merge branch '4.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
GrabowskiM committed Oct 18, 2024
2 parents 950908d + cd4176a commit a74c13b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import * as cookies from './cookies.helper';
import * as formValidation from './form.validation.helper';
import * as highlight from './highlight.helper';
import * as icon from './icon.helper';
import * as content from './content.helper';
import * as location from './location.helper';
import * as middleEllipsis from './middle.ellipsis';
import * as notification from './notification.helper';
Expand All @@ -25,6 +26,7 @@ import * as user from './user.helper';
ibexa.addConfig('helpers.formValidation', formValidation);
ibexa.addConfig('helpers.highlight', highlight);
ibexa.addConfig('helpers.icon', icon);
ibexa.addConfig('helpers.content', content);
ibexa.addConfig('helpers.location', location);
ibexa.addConfig('helpers.ellipsis.middle', middleEllipsis);
ibexa.addConfig('helpers.notification', notification);
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
const getEditLanguageCode = () => {
return window.document.querySelector('meta[name="LanguageCode"]')?.content;
};

export { getEditLanguageCode };

0 comments on commit a74c13b

Please sign in to comment.