blob: 9653990aecce377d32fd636cbc0798223c0f5c28 (
plain)
1
2
3
4
5
6
7
8
|
self.addEventListener('push', (e) => {
const data = e.data.json();
console.log(data);
alert(data);
self.registration.showNotification("notif received", {
body: "received",
});
});
|