summaryrefslogtreecommitdiff
path: root/worker.js
diff options
context:
space:
mode:
Diffstat (limited to 'worker.js')
-rw-r--r--worker.js16
1 files changed, 10 insertions, 6 deletions
diff --git a/worker.js b/worker.js
index f567447..7ae7724 100644
--- a/worker.js
+++ b/worker.js
@@ -123,15 +123,17 @@ this.addEventListener('fetch', function(event) {
return resp;
}
- if (req.url.match("read.html")) {
- return caches.match("read.html");
- }
+ if (!navigator.onLine) {
+ if (req.url.match("read.html")) {
+ return caches.match("read.html");
+ }
- if (req.url.match("offline.html")) {
- return caches.match("offline.html");
+ if (req.url.match("offline.html")) {
+ return caches.match("offline.html");
+ }
}
- console.log('cache miss for', req.url);
+ console.log('cache miss for', req.url, 'OL:', navigator.onLine);
return fetch(req).then(function(resp) {
@@ -148,6 +150,8 @@ this.addEventListener('fetch', function(event) {
}).catch(function() {
if (req.url[req.url.length-1] == "/" || req.url.match("index.php")) {
return caches.match("offline.html");
+ } else {
+ return caches.match(req.url);
}
});
})