I am having the exact issue described in this earlier posting:
http://groups.google.com/group/fluidapp/browse_thread/thread/5b1bc641fe930f1f/3f8c281342ce93ed?lnk=gst&q=growl+onclick#3f8c281342ce93ed

Namely, when I send more than one Growl alert from a Fluid app, each
with a distinct onclick handler, ALL Growl notifications end up
sharing the same onclick handler.

There is a simple test case I made; each onclick specifies a different
URL but as you can see all three point to the same URL.
http://ryantate.com/test_growl_alerts.html

Code:

if ('fluid' in window){
         ['1','2','3'].each(function(num){
                               window.fluid.showGrowlNotification({
                                                                     title: 
'Going to /' + num,
                                                                     
description: "Should go to /" + num,
                                                                     
onclick:function(){ window.location = 'http://
ryantate.com/' + num }
                                                                  });
                            });
      }

-- 
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.

Reply via email to