kopia lustrzana https://github.com/OpenBuilds/OpenBuilds-CONTROL
14 wiersze
359 B
JavaScript
14 wiersze
359 B
JavaScript
![]() |
if ('serviceWorker' in navigator) {
|
||
|
navigator.serviceWorker
|
||
|
.register('/service-worker.js')
|
||
|
.then(function(registration) {
|
||
|
console.log(
|
||
|
'Service Worker registration successful with scope: ',
|
||
|
registration.scope
|
||
|
);
|
||
|
})
|
||
|
.catch(function(err) {
|
||
|
console.log('Service Worker registration failed: ', err);
|
||
|
});
|
||
|
}
|