JS: Skip link when "href" attribute is not present

Signed-off-by: Juraj Oravec <jurajoravec@mailo.com>
This commit is contained in:
Juraj Oravec 2022-06-20 00:08:09 +02:00
parent 314b3d56f2
commit 26051543fd
Signed by: SGOrava
GPG Key ID: 13660A3F1D9F093B

View File

@ -25,6 +25,7 @@ for (link of links) {
linkTitle = siteTitle;
}
if (link.hasAttribute('href') == true) {
if (link.getAttribute('href').startsWith('/')) {
linkUrl = window.location.protocol + '//' + window.location.hostname + link.getAttribute('href');
} else if (!link.getAttribute('href').includes('/')) {
@ -39,6 +40,7 @@ for (link of links) {
});
}
}
}
if (availableLinks.length == 0) {
availableLinks.push({