Skip to content

Instantly share code, notes, and snippets.

@gauntface
Created March 6, 2017 22:16
Show Gist options
  • Select an option

  • Save gauntface/66c0e32dc2bcba91004ea6414a0b8db5 to your computer and use it in GitHub Desktop.

Select an option

Save gauntface/66c0e32dc2bcba91004ea6414a0b8db5 to your computer and use it in GitHub Desktop.
self.addEventListener('push', (event) => {
const data = event.data.json();
const promiseChain = self.registration.showNotification(data.title, {
body: data.body,
});
event.waitUntil(promiseChain);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment