Skip to content

Instantly share code, notes, and snippets.

@indreklasn
Created June 28, 2019 10:43
Show Gist options
  • Save indreklasn/71395d3b85c963886e8bf7067578e305 to your computer and use it in GitHub Desktop.
Save indreklasn/71395d3b85c963886e8bf7067578e305 to your computer and use it in GitHub Desktop.
Notification.requestPermission(result => {
if (result === 'granted') {
navigator.serviceWorker.ready.then(registration => {
registration.showNotification('Vibration Sample', {
body: 'Buzz! Buzz!',
tag: 'vibration-sample'
});
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment