22 lines
416 B
JavaScript
22 lines
416 B
JavaScript
|
var cacheName = 'o1m';
|
||
|
var filesToCache = [
|
||
|
'/',
|
||
|
'/index.html'
|
||
|
];
|
||
|
|
||
|
self.addEventListener('install', function(e) {
|
||
|
e.waitUntil(
|
||
|
caches.open(cacheName).then(function(cache) {
|
||
|
return cache.addAll(filesToCache);
|
||
|
})
|
||
|
);
|
||
|
});
|
||
|
|
||
|
self.addEventListener('fetch', function(e) {
|
||
|
e.respondWith(
|
||
|
caches.match(e.request).then(function(response) {
|
||
|
return response || fetch(e.request);
|
||
|
})
|
||
|
);
|
||
|
});
|