Advertisement
achshar

Untitled

Mar 26th, 2011
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function notification(title,body,image) {
  2.     var notification = webkitNotifications.createNotification(image,title,body);
  3.     setTimeout(notification.cancel(), 1500);
  4.     notification.show();
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement