notblink #16

Merged
kleph merged 3 commits from notblink into master 2020-09-11 17:27:22 +02:00
Showing only changes of commit 7f970820d8 - Show all commits

View file

@ -72,7 +72,7 @@ var x = setInterval(function() {
// If the count down is finished, write some text // If the count down is finished, write some text
if (distance < 0) { if (distance < 0) {
clearInterval(x); clearInterval(x);
document.getElementById("demo").innerHTML = "<span class="blink">BEER TIME !</span>"; document.getElementById("demo").innerHTML = '<span class="blink">BEER TIME !</span>';
changeFavicon('/favicon/beer') changeFavicon('/favicon/beer')
} }
}, 1000); }, 1000);