Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
titaniumnetwork-dev
GitHub Repository: titaniumnetwork-dev/Ludicrous
Path: blob/main/public/main.js
1223 views
1
var doc = document.getElementById('online-offline-show');
2
3
if (!navigator.onLine) {
4
doc.style.display = 'block';
5
}
6
7
if ("serviceWorker" in navigator) {
8
navigator.serviceWorker.getRegistrations().then(function(registrations) {
9
if (registrations.length !== 3)
10
return window.ludicrous.sw();
11
});
12
}
13
14