From 1810863af479bc51dba7b71d45c7bfe40b659135 Mon Sep 17 00:00:00 2001 From: Firepup Sixfifty Date: Thu, 27 Mar 2025 17:31:48 -0500 Subject: [PATCH] Remove bookie's credit from the footer, that's on the /usage page anyways --- public/scripts/footer.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/public/scripts/footer.js b/public/scripts/footer.js index 7ab0a89..2fc9af6 100644 --- a/public/scripts/footer.js +++ b/public/scripts/footer.js @@ -1,7 +1,5 @@ var foot = document.createElement("footer"); -foot.innerHTML = `This website uses Bookie0's BounceCSS for styling. -${location.pathname !== "/"? '
Return to index': ''} -
+foot.innerHTML = `${location.pathname !== "/"? 'Return to index
': ''} Website © 2025 Firepup650 `; document.querySelector("body").append(foot);