diff options
-rw-r--r-- | sworker.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -var version = 'v6 - 2016-01-01'; +var version = 'v19 - 2016-01-19'; var toCache = [ '/', 'index.html', @@ -22,7 +22,7 @@ var toCache = [ self.addEventListener('install', event => { event.waitUntil( - caches.open('static' + version).then(c => c.addAll(toCache)) + caches.open('static' + version).then(c => c.addAll(toCache)); ); }); |