This commit is contained in:
smege1001 2020-07-31 03:48:16 +01:00
parent 9e05025a6a
commit 29485e3b1f
1 changed files with 3 additions and 3 deletions

View File

@ -43,10 +43,10 @@ for (var linksIndex = 0; linksIndex < links.length; linksIndex++) {
var linkChild = link.getElementsByClassName("__cf_email__")[0];
linkChild.innerText = decodedEmail;
link.removeAttribute("data-cfemail");
link.classList.remove("__cf_email__");
linkChild.removeAttribute("data-cfemail");
linkChild.classList.remove("__cf_email__");
if (link.getAttribute("class") == "") link.removeAttribute("class");
if (linkChild.getAttribute("class") == "") linkChild.removeAttribute("class");
}
} else if (emailprotectionURLNoHashRegex.test(link.href) && link.hasAttribute("data-cfemail")) {
var hash = link.getAttribute("data-cfemail");