Skip to content

Instantly share code, notes, and snippets.

@mciastek
Created January 29, 2017 13:12
Show Gist options
  • Select an option

  • Save mciastek/ddc8aa2f690d5745458c005e0f7881b6 to your computer and use it in GitHub Desktop.

Select an option

Save mciastek/ddc8aa2f690d5745458c005e0f7881b6 to your computer and use it in GitHub Desktop.
const VERSION = 'v1';
var urlsToCache = [
'/',
'/styles/main.css',
'/script/main.js'
];
self.addEventListener('install', function(event) {
// Perform install steps
event.waitUntil(
caches.open(VERSION)
.then(function(cache) {
console.log('Opened cache');
return cache.addAll(urlsToCache);
})
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment