Guest User

Untitled

a guest
Apr 22nd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function startNotifications(){
  2.     navigator.notification.confirm('Wähle einen Button.'
  3.                     confirmed, 'Bestätigung',
  4.                     'A,B');
  5. }
  6.  
  7. function confirmed(button){
  8.     navigator.notification.beep(1);
  9.     navigator.notification.alert('Es wurde '+button+' gedrückt.',
  10.                 dismissed, 'Benachrichtigung',
  11.                 'Click Mich');
  12. }
  13.  
  14. function dismissed(){
  15.     navigator.notification.vibrate(1000);
  16. }
Add Comment
Please, Sign In to add comment