Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save osvaldasvalutis/e77cf16c1ba2d6ba26607fe7b302ed91 to your computer and use it in GitHub Desktop.
Save osvaldasvalutis/e77cf16c1ba2d6ba26607fe7b302ed91 to your computer and use it in GitHub Desktop.
if('serviceWorker' in navigator) {
document.querySelector('.hero').addEventListener('animationend', function () {
// service worker is registered only when the animation ends
navigator.serviceWorker.register('/serviceworker.js');
});
}
// ---
App.init({
// config
complete: function() {
// service worker is registered only when the app is initiated
if('serviceWorker' in navigator) {
navigator.serviceWorker.register('/serviceworker.js');
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment