-
Notifications
You must be signed in to change notification settings - Fork 17
/
sw.js
38 lines (36 loc) · 773 Bytes
/
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
var cacheName="ofs-v2"
self.addEventListener("install", function(event){
event.waitUntil(
caches.open(cacheName).then(function(cache){
cache.addAll([
"/",
"/favicon.ico",
"/manifest.json",
"/css/foundation.min.css",
"/js/vue.min.js",
"/js/clipboard.min.js",
"/js/main.js"
])
})
)
})
self.addEventListener("activate", function(event){
event.waitUntil(
caches.keys().then(function(keys){
keys.forEach(function(key){
if (key!== cacheName){
caches.delete(key)
}
})
})
)
})
self.addEventListener("fetch", function(event){
event.respondWith(
caches.open(cacheName).then(function(cache){
return cache.match(event.request).then(function(response){
return response ||fetch(event.request)
})
})
)
})