summaryrefslogtreecommitdiffstats
path: root/js/app.js
blob: eebb62d8053fde3c58a47ed3cf3cc07c2de5a50c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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);
}