summaryrefslogtreecommitdiff
path: root/src/scripts/main.js
diff options
context:
space:
mode:
authoraltaf-creator <64111012+altaf-creator@users.noreply.github.com>2023-05-04 20:27:00 +0700
committeraltaf-creator <64111012+altaf-creator@users.noreply.github.com>2023-05-04 20:27:00 +0700
commit57ef45d288fae81000e1d8669c0ddd68aa27cb63 (patch)
treed9d0e0da09230308502911ace644e032bfddbe18 /src/scripts/main.js
parent4898f6889e7b4ab39f04c152e17ac4ca763ff975 (diff)
PWA Update - attempt 4.1 | it doesn't work :(
Diffstat (limited to 'src/scripts/main.js')
-rw-r--r--src/scripts/main.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/scripts/main.js b/src/scripts/main.js
index e4efee0..091a3d2 100644
--- a/src/scripts/main.js
+++ b/src/scripts/main.js
@@ -1,5 +1,17 @@
+function urlExists(url) {
+ var http = new XMLHttpRequest();
+ http.open('HEAD', url, false);
+ if (http.status != 200)
+ console.log(`${http.status} ${url} `)
+ http.send();
+ return http.status != 404;
+}
+
if ("serviceWorker" in navigator) {
window.addEventListener("load", function () {
+ for (var i = 0; i < assets.length; i++) {
+ urlExists(assets[i]);
+ }
navigator.serviceWorker
.register("scripts/service-worker.js")