From f6fde51a559af03d61992afeb5f72a51005e7efa Mon Sep 17 00:00:00 2001 From: Piotr Czaja Date: Sat, 24 Jun 2023 13:05:06 +0200 Subject: [PATCH] fix --- czas-15min.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/czas-15min.html b/czas-15min.html index 78c9ec1..7019564 100644 --- a/czas-15min.html +++ b/czas-15min.html @@ -30,7 +30,7 @@ function startTimer(duration, display) { display.textContent = minutes + ":" + seconds; if (--timer < 0) { - document.getElementById("odliczacz").innerHTML = "

Cas dobiegł końca.


Proszę o zakończenie pracy.

" + document.getElementById("odliczacz").innerHTML = "

Czas dobiegł końca.


Proszę o zakończenie pracy.

" } }, 1000); }