Advertisement
Guest User

Untitled

a guest
Jul 25th, 2017
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. this.tab.select(2);
  2.  
  3. FCMPlugin.onNotification(function(data){
  4. if(data.wasTapped){
  5. //Notification was received on device tray and tapped by the user.
  6.  
  7. alert('data was tapped');
  8. this.tab.select(2);
  9. //this.navCtrl.push(ViewurgentnewsPage); also tried this
  10.  
  11. }else{
  12. //Notification was received in foreground. Maybe the user needs to be notified.
  13.  
  14. alert('this was received on foreground');
  15.  
  16.  
  17. }
  18. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement