MacGapProject / MacGap1

Desktop WebKit wrapper for HTML/CSS/JS applications.
Other
3.55k stars 208 forks source link

Support for custom Growl notification icons #52

Open anttipitkanen opened 12 years ago

anttipitkanen commented 12 years ago

It would be awesome to have custom icons in Growl notifications. The Growl notification API supports setting an icon (via iconData parameter) for notification. It would dramatically improve our message notifications if we could display the user's avatar or other relevant icon by simply providing the URL.

For example:

// Send a Growl notification
macgap.growl.notify({
  title: "Notify",
  content: "New Message!",
  icon: "/path/to/icon"
});