summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
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.");
});
}