Advertisement
Guest User

Untitled

a guest
Nov 21st, 2014
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function notify(text){
  2.     var notification = new Notification('Hello!', {body: text});
  3.     notification.onclick = function(){
  4.             console.log("Hello World!");
  5.     }
  6. }
  7.  
  8. notify("Hi!" )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement