blob: 06585e8e7819c0f0a4fda9345f2d9f7cd884d990 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
onactivate = function(e) {
e.waitUntil(self.caches.open("default-cache").then(function(cache) {
var response = new Response("Hi there");
return cache.put("madeup.txt", response);
}));
}
onfetch = function(e) {
if (e.request.url.match(/madeup.txt$/)) {
var p = self.caches.match("madeup.txt", { cacheName: "default-cache" });
e.respondWith(p);
}
}
|