Skip to content

Commit

Permalink
Prepare conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
TheWhite147 committed Oct 18, 2018
1 parent cf33d95 commit 4155602
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/js/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 4155602

Please sign in to comment.