diff options
author | 2018-06-13 16:43:42 +0100 | |
---|---|---|
committer | 2018-06-13 16:43:42 +0100 | |
commit | be2bbe35cf49763ad0258c005f3cbdddd7a21d75 (patch) | |
tree | 962d5e52f4bb57c397c068ae6a11b57952cfc459 /js/src/countdown.js | |
parent | [DB] Attempt reconnection if current connection was lost (diff) |
Compile as much JS with Gulp as possible
This will concatenate ALL of our JS, and minify it - thus leaving us with a single file to be loaded.
There's a few libraries we can't do this with, unfortunately - these are now added in fouc.js:
* Ace Editor
* Flatpickr
* Font-Awesome
Diffstat (limited to '')
-rw-r--r-- | js/src/countdown.js (renamed from static/js/countdown.js) | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/static/js/countdown.js b/js/src/countdown.js index 8ba2e58d..7eaa650c 100644 --- a/static/js/countdown.js +++ b/js/src/countdown.js @@ -1,6 +1,7 @@ "use strict"; (function(){ // Use a closure to avoid polluting global scope + // TODO: This needs to be built into the jams system const startjam = new Date(Date.UTC(2018, 2, 23)); const endjam = new Date(Date.UTC(2018, 2, 26)); |