diff options
author | altaf-creator <64111012+altaf-creator@users.noreply.github.com> | 2023-05-04 19:46:05 +0700 |
---|---|---|
committer | altaf-creator <64111012+altaf-creator@users.noreply.github.com> | 2023-05-04 19:46:05 +0700 |
commit | e3eaf62842087028e54c1a6008c8dfa7b3f45f14 (patch) | |
tree | 514a070a933903c97e0dc3d31d679d4b066589ee /src/scripts/service-worker.js | |
parent | c0e8971309f57d10abecc33074b5bc5cc1e348bd (diff) |
PWA Update - attempt 3.2
Diffstat (limited to 'src/scripts/service-worker.js')
-rw-r--r-- | src/scripts/service-worker.js | 43 |
1 files changed, 22 insertions, 21 deletions
diff --git a/src/scripts/service-worker.js b/src/scripts/service-worker.js index 22d8452..6e8f8db 100644 --- a/src/scripts/service-worker.js +++ b/src/scripts/service-worker.js @@ -1,27 +1,28 @@ const staticQuran = "quran-all"; const assets = [ - "/", - "/index.html", - "/src/index.html", - "/src/sura.html", - "/src/attribution.html", - "/src/styles/style.css", - "/src/styles/css/fontawesome.css", - "/src/styles/css/brands.css", - "/src/styles/css/solid.css", - "/src/styles/webfonts/fa-brands-400.ttf", - "/src/styles/webfonts/fa-brands-400.woff2", - "/src/styles/webfonts/fa-solid-900.ttf", - "/src/styles/webfonts/fa-solid-900.woff2", - "/src/styles/css/solid.css", - "/src/data/en.sahih.xml", - "/src/data/id.indonesian.xml", - "/src/data/quran-data.xml", - "/src/data/quran-uthmani.xml", - "/src/scripts/main.js", - "/src/scripts/quran.js", - "/src/scripts/sura-list.js", + "../../", + "../../index.html", + "../src/index.html", + "../src/sura.html", + "../src/attribution.html", + "../src/styles/style.css", + "../src/styles/css/fontawesome.css", + "../src/styles/css/brands.css", + "../src/styles/css/solid.css", + "../src/styles/webfonts/fa-brands-400.ttf", + "../src/styles/webfonts/fa-brands-400.woff2", + "../src/styles/webfonts/fa-solid-900.ttf", + "../src/styles/webfonts/fa-solid-900.woff2", + "../src/styles/css/solid.css", + "../src/data/en.sahih.xml", + "../src/data/id.indonesian.xml", + "../src/data/quran-data.xml", + "../src/data/quran-uthmani.xml", + "main.js", + "quran.js", + "sura-list.js", ]; + self.addEventListener("install", installEvent => { installEvent.waitUntil( caches.open(staticQuran).then(cache => { |