This commit is contained in:
Paul Gauthier 2023-08-10 22:38:02 -03:00
parent bc908da360
commit 85742e3b35

View file

@ -56,7 +56,7 @@ window.onload = function() {
var counter = 0;
var timer = document.getElementById('timer');
setInterval(function() {
counter = (counter + 0.1) % 10;
counter = (counter + 0.1) % 9;
timer.textContent = counter.toFixed(1);
}, 100);
}