summaryrefslogtreecommitdiffstats
path: root/sw.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sw.js8
1 files changed, 6 insertions, 2 deletions
diff --git a/sw.js b/sw.js
index f217f03..2e75d02 100644
--- a/sw.js
+++ b/sw.js
@@ -77,7 +77,11 @@ const assets = [
"/index.html",
"/login.html",
"/logout.html",
- "/favicon.png"
+ "/favicon.png",
+
+ "/pages/chats.html",
+ "/js/chats.js",
+ "/css/bubbles.css"
];
importScripts("/js/lib/localforage.min.js");
@@ -137,4 +141,4 @@ self.addEventListener("fetch", (evt) => {
evt.respondWith(caches.match(evt.request).then((cache_res) => {
return cache_res || fetch(evt.request);
}))
-});
+}); \ No newline at end of file