diff --git a/web/js/script.js b/web/js/script.js index ee591ad..5a420d3 100644 --- a/web/js/script.js +++ b/web/js/script.js @@ -133,7 +133,7 @@ function setClock() { var now = new Date(); - var clockValue = now.getHours() + ":" + now.getMinutes().toString().padStart(2, '0'); + var clockValue = now.getHours() + ":" + now.getMinutes().toString().padStart(2, "0"); $("#clock").html(clockValue); }