Slide 51
Slide 51 text
self.addEventListener('push', function(event) {
const promiseChain = self.registration.showNotification(
'Hello, World.', {
body: 'notification test!',
icon: '/images/icon-512x512.png',
image: '/images/body-notification.jpg',
vibrate: [
500, 110, 500, 110, 450, 110, 200, 110, 170, 40, 450,
110, 200, 110, 170, 40, 500
],
sound: 'starWarsPing.mp3'
}
);
event.waitUntil(promiseChain);
});