Fix quotes
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is failing

This commit is contained in:
kleph 2020-09-11 17:11:59 +02:00
parent 76228565aa
commit 7f970820d8

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);