-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsw.js
39 lines (36 loc) · 1.03 KB
/
sw.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
self.cacheName = 'horologium-pwa';
self.cacheKeys = [
'/',
'/index.html',
'/styles/base.css',
'/styles/main.css',
'/styles/info.css',
'/styles/privacy.css',
'/styles/tabs.css',
'/scripts/main.js',
'/scripts/Horologium.js',
'/scripts/MenuBar.js',
'/scripts/AdHolder.js',
'/images/background.jpg',
'/images/icon-192.png',
'/images/icon-512.png',
];
self.addEventListener('install', function (event) {
event.waitUntil(
caches.open(self.cacheName).then(function (cache) {
return cache.addAll(self.cacheKeys);
})
);
});
self.addEventListener('fetch', function (event) {
event.respondWith(
caches.open(self.cacheName).then(function (cache) {
return cache.match(event.request).then(function (response) {
return response || fetch(event.request).then(function (response) {
cache.put(event.request, response.clone());
return response;
});
});
})
);
});