diff options
author | sijanec <anton@sijanec.eu> | 2021-03-25 18:09:50 +0100 |
---|---|---|
committer | sijanec <anton@sijanec.eu> | 2021-03-25 18:09:50 +0100 |
commit | 1f9f384933ac7afa5bca8a2a465f6f1ae6f02edd (patch) | |
tree | 65a06f833dc64878cbca0188b28e88d1d5cb243b /assets | |
parent | Merge branch 'master' into dev (diff) | |
download | beziapp-1f9f384933ac7afa5bca8a2a465f6f1ae6f02edd.tar beziapp-1f9f384933ac7afa5bca8a2a465f6f1ae6f02edd.tar.gz beziapp-1f9f384933ac7afa5bca8a2a465f6f1ae6f02edd.tar.bz2 beziapp-1f9f384933ac7afa5bca8a2a465f6f1ae6f02edd.tar.lz beziapp-1f9f384933ac7afa5bca8a2a465f6f1ae6f02edd.tar.xz beziapp-1f9f384933ac7afa5bca8a2a465f6f1ae6f02edd.tar.zst beziapp-1f9f384933ac7afa5bca8a2a465f6f1ae6f02edd.zip |
Diffstat (limited to 'assets')
-rw-r--r-- | assets/js/app.js.bvr | 6 | ||||
-rw-r--r-- | assets/js/initialize.js | 6 | ||||
-rw-r--r-- | assets/root/index.html | 35 |
3 files changed, 46 insertions, 1 deletions
diff --git a/assets/js/app.js.bvr b/assets/js/app.js.bvr index c99124b..7375b61 100644 --- a/assets/js/app.js.bvr +++ b/assets/js/app.js.bvr @@ -4,10 +4,16 @@ const app_version = "<@?g app_version@>"; const previous_commit = "<@?g latest_commit@>"; const BEZIAPP_UPDATE_INTERVAL = 300; // update vsakih 300 sekund +if (location.protocol !== 'https:') { + location.replace(`https:${location.href.substring(location.protocol.length)}`); +} + if ("serviceWorker" in navigator) { navigator.serviceWorker.register("/sw.js") .then(() => { }) .catch((err) => console.log("Service worker registration failed", err)); +} else { + alert("Vaša naprava ne podpira BežiAppa. Your device does not support BežiApp."); } // Listen to messages from service workers. diff --git a/assets/js/initialize.js b/assets/js/initialize.js index cb5d210..219bc57 100644 --- a/assets/js/initialize.js +++ b/assets/js/initialize.js @@ -4,7 +4,11 @@ function getUrlParameter(sParam) { return found_param === null ? "" : found_param; } - +try { + localforage.getItem("logged_in").then(console.log); +} catch { + alert("Vaša naprava ne podpira BežiAppa. Your device does not support BežiApp."); +} localforage.getItem("logged_in") .then( function (value) { diff --git a/assets/root/index.html b/assets/root/index.html index 2a861a1..f2309ad 100644 --- a/assets/root/index.html +++ b/assets/root/index.html @@ -22,6 +22,41 @@ </head> <body> + <noscript> + <h1> + BežiApp za delovanje potrebuje Javascript, trenutno pa ni omogočen. Preglejte nastavitve brskalnika in omogočite Javascript. + </h1> + <h1> + BežiApp needs Javascript to operate, but it's currently not accessible. Check your browser's settings and enable Javascript. + </h1> + </noscript> + <div id=nepodpira> + <h1> + BežiApp se ni mogel zagnati ): + </h1> + <h2> + Mogoče gre za napako, pišite nam na Instagram (@beziapp). + </h2> + <h3> + Bolj verjetno pa je, da vaša naprava ni podprta. To velja predvsem za stare iPhone telefone, saj Apple ne posodablja brskalnikov. + </h3> + <hr> + <h1> + BežiApp could not start ): + </h1> + <h2> + This may happen due to an error, write to us on Instagram (@beziapp). + </h2> + <h3> + There's a higher chance that your device is not supported. This applies in particular to old iPhone phones, as Apple does not upgrade browsers. + </h3> + <hr> + <i>BežiApp ver. <span id=beziappver></span><br>BežiApp previous commit: <span id=beziappcommit></span></i> + </div> + <script> + document.getElementById("beziappver").innerText = app_version; + document.getElementById("beziappcommit").innerText = previous_commit; + </script> </body> </html> |