Changes

Jump to navigation Jump to search
Switched to var
Line 1: Line 1:  
if (location.href.startsWith("http://")) {
 
if (location.href.startsWith("http://")) {
     let nav = document.querySelector("#p-navigation ul");
+
     var nav = document.querySelector("#p-navigation ul");
     let a = document.createElement("a");
+
     var a = document.createElement("a");
 
     a.href = "https://" + location.href.substring("http://".length);
 
     a.href = "https://" + location.href.substring("http://".length);
 
     a.innerText = "Upgrade to HTTPS";
 
     a.innerText = "Upgrade to HTTPS";
 
     nav.insertAfter(nav.children[0]);
 
     nav.insertAfter(nav.children[0]);
 
}
 
}

Navigation menu