diff options
author | Matěj Cepl <mcepl@cepl.eu> | 2016-01-19 19:00:18 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@cepl.eu> | 2016-01-19 19:06:26 +0100 |
commit | c5e1bc43a8e3c5b607f907e0460072e71e5d1856 (patch) | |
tree | fb3c0144b453cdbd1a1d07ca6cfa7f6aac66a8aa | |
parent | cc7f3dc66d7ffaa3d3494b4061c290f7c28a3a10 (diff) | |
download | hesla-c5e1bc43a8e3c5b607f907e0460072e71e5d1856.tar.gz |
Revert back to the previous version
-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)); ); }); |