Fixed setting content of countdown span
All checks were successful
the build was successful

Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
2019-04-28 11:43:18 +02:00
parent 4c072a7462
commit cdca737623

View File

@ -39,7 +39,7 @@ $(function() {
last: " und ", last: " und ",
delim: ", "}); delim: ", "});
let counterID = countdown(function(timestamp) { let counterID = countdown(function(timestamp) {
countdownSpan.innerText = timestamp.toString(); countdownSpan.html(timestamp.toString());
}, new Date(2019, 5, 26, 18, 0), }, new Date(2019, 5, 26, 18, 0),
countdown.DAYS | countdown.DAYS |
countdown.HOURS | countdown.HOURS |