Advertisement
Guest User

Untitled

a guest
May 22nd, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. messaging.onMessage(function(payload) {
  2. var obj = jQuery.parseJSON(payload.data.notification);
  3. var notification = new Notification(obj.title,
  4. {
  5. icon: obj.icon,
  6. body: obj.body
  7. });
  8. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement