I'm interested in using the html5 notifications api but have a few questions:
Thanks
There are two types of notifications:
webkitNotifications.createNotification
- this will create a generic notification that can be passed exactly three items: Title, Icon, ContentwebkitNotifications.createHTMLNotification
- this can be passed a url to an html page that will be displayed a notificationIf you want more control than createNotification offers, use createHTMLNotification and pass it a custom html page.