Advertisement
Guest User

Untitled

a guest
Jul 25th, 2014
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. //push notifications handler
  2. document.addEventListener('push-notification', function(event) {
  3. var notification = event.notification;
  4. // navigator.notification.alert(notification.aps.alert);
  5.  
  6. //to view full push payload
  7. // navigator.notification.alert(JSON.stringify(notification));
  8.  
  9. //reset badges on icon
  10. pushNotification.setApplicationIconBadgeNumber(0);
  11. });
  12.  
  13. if( typeof(notification.u.url) != "undefined" ) {
  14.  
  15. // do whatever here
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement