Skip to content

Instantly share code, notes, and snippets.

@eezhal92
Last active October 12, 2017 10:54
Show Gist options
  • Save eezhal92/3d61ced1b4adac54957699fc3b79fc3a to your computer and use it in GitHub Desktop.
Save eezhal92/3d61ced1b4adac54957699fc3b79fc3a to your computer and use it in GitHub Desktop.
Bg Sync Demo
function offerBgSync(err) {
if (!window.navigator.onLine) {
showBgSyncOffer();
listen.approveBgSync((event) => {
askNotificationPermission()
.then(queueRecipeLoad)
.then(getServiceWorkerRegistration)
.then(registerBgSync)
.then(showBgSyncApproval);
});
}
throw err;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment