This commit is contained in:
Jordan Vidrine 2023-04-21 08:23:30 -05:00
parent 3b99de4972
commit 1f99dbf0fa
1 changed files with 19 additions and 9 deletions

View File

@ -24,11 +24,18 @@ export default {
.split("|")
.filter(Boolean)
.map((customHeaderLinksArray) => {
const [linkText, linkTitle, linkHref, device, target, keepOnScroll, locale] =
customHeaderLinksArray
.split(",")
.filter(Boolean)
.map((x) => x.trim());
const [
linkText,
linkTitle,
linkHref,
device,
target,
keepOnScroll,
locale,
] = customHeaderLinksArray
.split(",")
.filter(Boolean)
.map((x) => x.trim());
const deviceClass = `.${device}`;
const linkTarget = target === "self" ? "" : "_blank";
@ -47,10 +54,13 @@ export default {
anchorAttributes.target = linkTarget;
}
if (locale !== ""
&& document.documentElement.lang
&& document.documentElement.lang !== locale
) { return ; }
if (
locale !== "" &&
document.documentElement.lang &&
document.documentElement.lang !== locale
) {
return;
}
headerLinks.push(
h(