diff options
author | 2018-03-21 19:35:48 +0000 | |
---|---|---|
committer | 2018-03-21 19:35:48 +0000 | |
commit | b2262642bb67ba53628307c23296c48694d710c4 (patch) | |
tree | 60741c8093b851094e1e3cfe32be61ce319ac1db /static | |
parent | Added a Code Jam Countdown (#1eevq) (#43) (diff) |
Update countdown.js
Diffstat (limited to 'static')
-rw-r--r-- | static/js/countdown.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/static/js/countdown.js b/static/js/countdown.js index 0992a94e..5f5871d9 100644 --- a/static/js/countdown.js +++ b/static/js/countdown.js @@ -3,7 +3,7 @@ var daysDisplay = document.getElementById("days"); var hoursDisplay = document.getElementById("hours"); var minutesDisplay = document.getElementById("minutes"); var secondsDisplay = document.getElementById("seconds"); -var startjam = new Date(Date.UTC(2018, 2, 24)); +var startjam = new Date(Date.UTC(2018, 2, 23)); var endjam = new Date(Date.UTC(2018, 2, 26)); var goal; var now = Date.now(); @@ -47,4 +47,4 @@ if (now+1000 >= endjam.getTime()) { minutesDisplay.innerHTML = minutes; secondsDisplay.innerHTML = seconds; }, 100); -}
\ No newline at end of file +} |