delete files that are actually built and amend one line of js

This commit is contained in:
Spax
2025-11-02 13:15:07 -07:00
parent fa711bc81e
commit 6342941cde
3 changed files with 1 additions and 585 deletions

View File

@@ -135,7 +135,7 @@ function returnScroll() {
const scrollArray = JSON.parse(sessionStorage.getItem("scrollPos") ?? "[]").map(num => Number(num));
// check if saved, otherwise goto top and remove back arrow
if (scrollArray.length > 1) {
pos = scrollArray.shift();
let pos = scrollArray.shift();
sessionStorage.setItem("scrollPos", JSON.stringify(scrollArray));
window.scroll(0, pos);
}