1
0
mirror of https://github.com/oceanprotocol/docs.git synced 2024-11-26 19:49:26 +01:00

Update sw.js

This commit is contained in:
mihaisc 2022-08-02 14:12:52 +03:00 committed by GitHub
parent 3c32812292
commit cb4b436d8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

19
sw.js
View File

@ -1,10 +1,23 @@
self.addEventListener('install', function(e) { self.addEventListener('install', function(e) {
console.log('script install')
self.skipWaiting(); self.skipWaiting();
}); });
self.addEventListener('activate', function(e) { self.addEventListener("activate", function (event) {
console.log('script activate') event.waitUntil(
caches.keys().then(function (cacheNames) {
return Promise.all(
cacheNames
.filter(function (cacheName) {
// Return true if you want to remove this cache,
// but remember that caches are shared across
// the whole origin
})
.map(function (cacheName) {
return caches.delete(cacheName);
})
);
})
);
self.registration.unregister() self.registration.unregister()
.then(function() { .then(function() {
return self.clients.matchAll(); return self.clients.matchAll();