Skip to content

Commit

Permalink
πŸ› Removed debug code / fixed number loading
Browse files Browse the repository at this point in the history
  • Loading branch information
kieranperk authored Dec 22, 2023
1 parent 1216f35 commit 9def4d6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions script.js
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,7 @@ function numberStringShortener(number) {
// On-Load
window.addEventListener("load", function () {
// Load variables
//currentNumber = parseInt(localStorage.getItem("number")) || 1;
currentNumber = 1
currentNumber = parseInt(localStorage.getItem("number")) || 1;
scrollsPerScroll = parseInt(localStorage.getItem("sps")) || 1;
scrollsPerScrollLevel = parseInt(localStorage.getItem("spsl")) || 0;
autoScrollerSPS = parseInt(localStorage.getItem("assps")) || 0;
Expand Down

0 comments on commit 9def4d6

Please sign in to comment.