Skip to content

Instantly share code, notes, and snippets.

@kypflug

kypflug/sw-5.js Secret

Created December 15, 2017 01:57
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save kypflug/25727eb1dc9338e58b199ced638ebaa2 to your computer and use it in GitHub Desktop.
self.oninstall = function(event) {
event.waitUntil(
caches.open('static-v1').then(function(cache) {
return cache.addAll([
'/',
'/index.html',
'/styles.css',
'/main.js',
'/fallback.html'
]);
})
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment