Skip to content

Instantly share code, notes, and snippets.

@amitmerchant1990
Created November 15, 2016 09:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amitmerchant1990/47533b3422bce2d50437d12fba705858 to your computer and use it in GitHub Desktop.
Save amitmerchant1990/47533b3422bce2d50437d12fba705858 to your computer and use it in GitHub Desktop.
// Registering ServiceWorker
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('sw.js').then(function(registration) {
// Registration was successful
console.log('ServiceWorker registration successful with scope: ', registration.scope);
}).catch(function(err) {
// registration failed :(
console.log('ServiceWorker registration failed: ', err);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment