Skip to content

Instantly share code, notes, and snippets.

@eezhal92
Created October 12, 2017 12:43
Show Gist options
  • Save eezhal92/992cdfe2fdba4819c4674a1d109933c6 to your computer and use it in GitHub Desktop.
Save eezhal92/992cdfe2fdba4819c4674a1d109933c6 to your computer and use it in GitHub Desktop.
self.addEventListener('sync', function(event) {
if (event.tag == 'outbox') {
// sendEverythingInTheOutbox should return Promise
event.waitUntil(sendEverythingInTheOutbox());
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment