summaryrefslogtreecommitdiff
path: root/public/service-worker.js
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2019-05-18 08:31:13 +0200
committerDaniel Friesel <derf@finalrewind.org>2019-05-18 08:31:13 +0200
commitc3071d54eb1275e36067f8549a7a7ac2c6876de9 (patch)
tree4669ca1548f7887305cb3ea35aad6b677531000c /public/service-worker.js
parent3668c69d1fad5855fd9bcd190855a7f6c6ec2195 (diff)
parent2107c0bbaf9f4b7f66c09eb7d242790145456292 (diff)
Merge branch 'marudor-darkMode'
Diffstat (limited to 'public/service-worker.js')
-rw-r--r--public/service-worker.js25
1 files changed, 13 insertions, 12 deletions
diff --git a/public/service-worker.js b/public/service-worker.js
index e6f6ae0..165038b 100644
--- a/public/service-worker.js
+++ b/public/service-worker.js
@@ -1,18 +1,19 @@
-const CACHE_NAME = 'static-cache-v20';
+const CACHE_NAME = 'static-cache-v21';
const FILES_TO_CACHE = [
'/favicon.ico',
'/offline.html',
- '/static/v20/css/materialize.min.css',
- '/static/v20/css/material-icons.css',
- '/static/v20/css/local.css',
- '/static/v20/fonts/MaterialIcons-Regular.woff2',
- '/static/v20/fonts/MaterialIcons-Regular.woff',
- '/static/v20/fonts/MaterialIcons-Regular.ttf',
- '/static/v20/js/jquery-3.4.1.min.js',
- '/static/v20/js/materialize.min.js',
- '/static/v20/js/travelynx-actions.min.js',
- '/static/v20/js/autocomplete.min.js',
- '/static/v20/js/geolocation.min.js',
+ '/static/v21/css/light.min.css',
+ '/static/v21/css/dark.min.css',
+ '/static/v21/css/material-icons.css',
+ '/static/v21/css/local.css',
+ '/static/v21/fonts/MaterialIcons-Regular.woff2',
+ '/static/v21/fonts/MaterialIcons-Regular.woff',
+ '/static/v21/fonts/MaterialIcons-Regular.ttf',
+ '/static/v21/js/jquery-3.4.1.min.js',
+ '/static/v21/js/materialize.min.js',
+ '/static/v21/js/travelynx-actions.min.js',
+ '/static/v21/js/autocomplete.min.js',
+ '/static/v21/js/geolocation.min.js',
];
self.addEventListener('install', (evt) => {