This commit is contained in:
Piotr Czaja 2023-06-24 13:05:06 +02:00
parent d64313c1ae
commit f6fde51a55

View File

@ -30,7 +30,7 @@ function startTimer(duration, display) {
display.textContent = minutes + ":" + seconds; display.textContent = minutes + ":" + seconds;
if (--timer < 0) { if (--timer < 0) {
document.getElementById("odliczacz").innerHTML = "<h1 class='font-weight-bold'>Cas dobiegł końca.</h1><hr/><p>Proszę o zakończenie pracy.</p></div>" document.getElementById("odliczacz").innerHTML = "<h1 class='font-weight-bold'>Czas dobiegł końca.</h1><hr/><p>Proszę o zakończenie pracy.</p></div>"
} }
}, 1000); }, 1000);
} }