Skip to content

Instantly share code, notes, and snippets.

@kypflug

kypflug/sw-4.js Secret

Created December 15, 2017 01:56
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 kypflug/5c8946ab14d63ae1220674e973d9275f to your computer and use it in GitHub Desktop.
Save kypflug/5c8946ab14d63ae1220674e973d9275f to your computer and use it in GitHub Desktop.
<script>
if (navigator.serviceWorker) {
navigator.serviceWorker.register('sw.js', {scope: '/'})
.then(
function (registration) {
console.log('Service worker registered!');
},
function (err) {
console.error('Installation failed!', err);
}
);
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment