Skip to content

Commit

Permalink
fix retrive local data
Browse files Browse the repository at this point in the history
  • Loading branch information
mjafory committed Feb 10, 2024
1 parent 002e969 commit fc41b7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions keyboard6/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@
}
}

document.getElementById("secods").innerHTML = parseInt(localStorage.getItem('customTime')) + "s";
document.getElementById("second").innerHTML = parseInt(localStorage.getItem('customTime')) + "s";
document.getElementById("secods").innerHTML = parseInt(localStorage.getItem('customTime') || "120") + "s";
document.getElementById("second").innerHTML = parseInt(localStorage.getItem('customTime') || "120") + "s";

</script>

Expand Down

0 comments on commit fc41b7d

Please sign in to comment.