Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | self.addEventListener("push", function (event) { const data = event.data?.json(); self.registration.showNotification(data.title, { body: data.body, icon: data.icon, badge: data.badge, data: { url: data.url }, }); }); // Handles clicking on a url within a notification self.addEventListener("notificationclick", (event) => { const notificationData = event.notification.data; Iif (notificationData.url) { clients.openWindow(notificationData.url); } event.notification.close(); }); |