Skip to content

Instantly share code, notes, and snippets.

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

  • Save gauntface/7acd0a174638876cb3bf25d90e99d5ad to your computer and use it in GitHub Desktop.

Select an option

Save gauntface/7acd0a174638876cb3bf25d90e99d5ad to your computer and use it in GitHub Desktop.
self._handlePushEvent = (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