Guest User

Untitled

a guest
Dec 11th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. self.addEventListener('install', function(e) {
  2. console.log('[ServiceWorker] Install');
  3. e.waitUntil(
  4. caches.open(cacheFileName)
  5. .then(function(cache) {
  6. console.log('[ServiceWorker] Caching app shell');
  7. return cache.addAll(filesToCache);
  8. })
  9. );
  10. });
Add Comment
Please, Sign In to add comment