Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
scrubware authored Sep 6, 2022
1 parent c94ceab commit 4d88d9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
var seconds = Math.floor((distance % (1000 * 60)) / 1000);

// Display the result in the element with id="demo"
document.getElementById("demo").innerHTML = days + "days, " + hours + "hours "
+ minutes + "minutes, and " + seconds + "seconds.";
document.getElementById("demo").innerHTML = days + " days, " + hours + " hours "
+ minutes + " minutes, and " + seconds + " seconds.";

// If the count down is finished, write some text
if (distance < 0) {
Expand Down

0 comments on commit 4d88d9b

Please sign in to comment.