Rework entire site to host everything on it's own, and not rely on a non-public nginx config for everything

This commit is contained in:
Firepup Sixfifty 2024-10-04 07:26:10 -05:00
parent 8877ec9be1
commit d36830a257
No known key found for this signature in database
46 changed files with 103 additions and 103 deletions

View file

@ -13,7 +13,7 @@ function keydownListener(event) {
} else {
dPressed = false;
ePressed = false;
vPressed = false;
vPressed = false;
}
}
document.addEventListener('keydown', keydownListener);
@ -27,7 +27,7 @@ function keyupListener(e) {
eruda.init();
document.removeEventListener('keyup', keyupListener);
document.removeEventListener('keydown', keydownListener);
}
}
}
document.addEventListener('keyup', keyupListener);
console.debug("Listener Script ready.")
console.debug("Listener Script ready.")

View file

@ -3,7 +3,7 @@ function dLS(url) {
script.src = url;
document.head.appendChild(script);
}
dLS("hidden.js")
dLS("footer.js")
dLS("poof.js")
console.log("Hidden scripts loaded")
dLS("/scripts/hidden.js")
dLS("/scripts/footer.js")
dLS("/scripts/poof.js")
console.log("Hidden scripts loaded")

View file

@ -3,6 +3,6 @@ function dLS(url) {
script.src = url;
document.head.appendChild(script);
}
dLS("pgen.js")
dLS("footer.js")
console.log("PwdGen scripts loaded")
dLS("/scripts/pgen.js")
dLS("/scripts/footer.js")
console.log("PwdGen scripts loaded")

View file

@ -4,7 +4,7 @@ function dLS(url) {
document.head.appendChild(script);
}
dLS("https://cdn.jsdelivr.net/npm/eruda@2.11.3/eruda.min.js")
dLS("/footer.js")
dLS("/maintenance.js")
dLS("/eruda_loader.js")
console.info("Main Script done.")
dLS("/scripts/footer.js")
dLS("/scripts/maintenance.js")
dLS("/scripts/eruda_loader.js")
console.info("Main Script done.")