-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsw.js
38 lines (36 loc) · 1.28 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
self.addEventListener('activate', function(event) {
event.waitUntil(self.clients.claim());
});
var cacheName = 'dm-ai';
var filesToCache = [
'/',
'/index.html',
'/css/animate.css',
'/css/main.css',
'/css/style.css',
'/css/style-wel.css',
'/pages/welcome.html',
'https://code.jquery.com/jquery-3.2.1.slim.min.js',
'https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js',
'https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js'
];
self.addEventListener('install', function(e) {
console.log('[ServiceWorker] Install');
e.waitUntil(
caches.open(cacheName).then(function(cache) {
console.log('[ServiceWorker] Caching app shell');
return cache.addAll(filesToCache);
})
);
});
self.addEventListener('activate', event => {
event.waitUntil(self.clients.claim());
});
self.addEventListener('fetch', event => {
event.respondWith(
caches.match(event.request, {ignoreSearch:true}).then(response => {
return response || fetch(event.request);
})
);
});
self.skipWaiting();