// Register a background sync event to recheck missed notifications when the browser wakes up
navigator.serviceWorker.ready.then(function(registration) {
if ('sync' in registration) {
registration.sync.register('recheck-push').catch(function(err) {
console.error('Sync registration failed:', err);
});
}
});
iOS Add to Home Screen Guide