summaryrefslogtreecommitdiffstats
path: root/js/app.js
blob: f5e9d50d9f22f907a89d26c0e1dc1eec57de4029 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
if ("serviceWorker" in navigator) {
    navigator.serviceWorker.register("/sw.js")
        .then(() => { })
        .catch((err) => console.log("Service worker registration failed", err));
}

// Listen to messages from service workers.
if (navigator.serviceWorker) {
    navigator.serviceWorker.addEventListener('message', (event) => {
        if (event.data.msg === "install") {
            window.location.replace("/index.html");
        }
    });
}
if (location.protocol != 'https:') {
 location.href = 'https:' + window.location.href.substring(window.location.protocol.length);
}
async function UIAlert(usermsg, devmsg) {
  if(true) { // če bo kakšen dev switch?
    M.toast( { html: usermsg } );
    console.log("[BežiApp UIAlert] "+usermsg+" "+devmsg);
  } else {
    M.toast( { html: usermsg+" "+devmsg } );
  }
}