summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2019-11-17 15:46:56 +0300
committerAndrew Dolgov <[email protected]>2019-11-17 15:46:56 +0300
commit296d347fe04602e2798e072de21c222c7f95b51c (patch)
tree0a3ac16e42554e600b513c0f2e85f79aab4703b2 /js
parent10734c622fb6d9ca19f8580242ff951ab9775045 (diff)
service worker: only hardcode return of read.html etc while offline, try
to return cached data if online request failed index: notify to reload the page initially because of SW bullshit
Diffstat (limited to 'js')
-rw-r--r--js/index.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/js/index.js b/js/index.js
index 9aadc00..2ec8508 100644
--- a/js/index.js
+++ b/js/index.js
@@ -28,9 +28,10 @@ function cache_refresh(force) {
.html("Could not communicate with service worker. Try reloading the page.");
} else {
localforage.setItem("epube.initial-load-done", true).then(function() {
- window.setTimeout(function() {
- window.location.reload();
- }, 1000);
+ $(".dl-progress")
+ .show()
+ .addClass("alert-info")
+ .html("Please reload the page once to activate service worker and populate offline cache.");
});
}