Created
January 29, 2017 13:12
-
-
Save mciastek/ddc8aa2f690d5745458c005e0f7881b6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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