Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
3kh0
GitHub Repository: 3kh0/3kh0.github.io-replit
Path: blob/main/js/games-server.js
617 views
1
var hasInstalled = false;
2
3
navigator.serviceWorker.getRegistrations().then(function (registrations) {
4
for (let registration of registrations) {
5
if (registration.active.scriptURL == location.origin + "/sw.js") {
6
hasInstalled = true;
7
}
8
}
9
});
10
11
navigator.serviceWorker.register(location.origin + "/sw.js").then(function (reg) {
12
if (!hasInstalled) {
13
window.location.reload();
14
}
15
});
16
17