Skip to content

Instantly share code, notes, and snippets.

@aircokol
Created March 18, 2020 08:17
Show Gist options
  • Select an option

  • Save aircokol/556dd83743bb20cbbf2a38b636a464c7 to your computer and use it in GitHub Desktop.

Select an option

Save aircokol/556dd83743bb20cbbf2a38b636a464c7 to your computer and use it in GitHub Desktop.
Отключение service worker
if(window.navigator && navigator.serviceWorker) {
navigator.serviceWorker.getRegistrations()
.then(function(registrations) {
for(let registration of registrations) {
registration.unregister();
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment