mirror of
https://github.com/kremalicious/portfolio.git
synced 2024-11-14 09:05:15 +01:00
15 lines
324 B
JavaScript
15 lines
324 B
JavaScript
self.addEventListener('install', function() {
|
|
self.skipWaiting()
|
|
})
|
|
|
|
self.addEventListener('activate', function() {
|
|
self.registration
|
|
.unregister()
|
|
.then(function() {
|
|
return self.clients.matchAll()
|
|
})
|
|
.then(function(clients) {
|
|
clients.forEach(client => client.navigate(client.url))
|
|
})
|
|
})
|