diff options
author | altaf-creator <64111012+altaf-creator@users.noreply.github.com> | 2023-05-04 20:27:00 +0700 |
---|---|---|
committer | altaf-creator <64111012+altaf-creator@users.noreply.github.com> | 2023-05-04 20:27:00 +0700 |
commit | 57ef45d288fae81000e1d8669c0ddd68aa27cb63 (patch) | |
tree | d9d0e0da09230308502911ace644e032bfddbe18 /src/scripts/main.js | |
parent | 4898f6889e7b4ab39f04c152e17ac4ca763ff975 (diff) |
PWA Update - attempt 4.1 | it doesn't work :(
Diffstat (limited to 'src/scripts/main.js')
-rw-r--r-- | src/scripts/main.js | 12 |
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") |