Skip to content

Instantly share code, notes, and snippets.

@g8d3
Last active January 5, 2017 16:22
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 g8d3/136c1b6381ac8f874c7084bf402b957c to your computer and use it in GitHub Desktop.
Save g8d3/136c1b6381ac8f874c7084bf402b957c to your computer and use it in GitHub Desktop.
qwe
navigator.serviceWorker.register('https://gist.githubusercontent.com/juanpastas/136c1b6381ac8f874c7084bf402b957c/raw/be873a06c05d00a17efb2b517e95d7341559e862/a.js');
Notification.requestPermission(function(result) {
if (result === 'granted') {
navigator.serviceWorker.ready.then(function(registration) {
registration.showNotification('Notification with ServiceWorker');
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment