-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsw.js
32 lines (32 loc) · 1.02 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
self.addEventListener("install", function(event) {
event.waitUntil(
caches.open("v1").then(function(cache) {
return cache.addAll([
"index.html",
"counter.css",
"counter.js",
"hammer.2.0.8.min.js",
"slideout.min.js",
"img/head.png",
"img/hr.png",
"img/skull.gif",
"img/touch-icon-192.png"
]);
})
);
});
self.addEventListener("fetch", function(event) {
event.respondWith(
caches.match(event.request).then(function(resp) {
return resp || fetch(event.request).then(function(response) {
var responseClone = response.clone();
caches.open("v1").then(function(cache) {
cache.put(event.request, responseClone);
});
return response;
});
}).catch(function() {
return caches.match("img/skull.gif");
})
);
});