Hi all,
Currently, it seems the onclick event handler receives no arguments:
var clickHandler = function() {
console.log("Arguments: ", arguments.length); // This prints:
Arguments: 0
}
var notification = {
title: "Title",
description: "description",
priority: 3,
sticky: false,
onclick: clickHandler
};
window.fluid.showGrowlNotification(notification);
It would be great to be able to know what notification was clicked.
Any chance of having that implemented?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"fluidapp" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/fluidapp?hl=en
-~----------~----~----~----~------~----~------~--~---