Skip to content

Instantly share code, notes, and snippets.

@glauberramos
Created October 10, 2017 03:29
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 glauberramos/7ad1f148663065cee87c16090c7108ca to your computer and use it in GitHub Desktop.
Save glauberramos/7ad1f148663065cee87c16090c7108ca to your computer and use it in GitHub Desktop.
Register service worker
<script>
if (navigator.serviceWorker) {
navigator.serviceWorker.register('./sw.js')
.catch(function(err) {
console.error('Unable to register service worker.', err);
});
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment