Do you have a simple test page we could try and reproduce the problem on our machines? It would help us to fix it.
Honza On Monday, April 29, 2013 2:38:23 PM UTC+2, [email protected] wrote: > > Noticed on Firebug 1.11.2, ExtJS 3.4, Firefox 20.0.1 > If you have something like this in your code: > > function someFunc(param) {...} > new Ext.Button ({ handler: someFunc }) > > Firefox can hang up when you press this button. This occurs if someFunc > has some params (even if they are optional). Correct variant here is: > new Ext.Button ({ handler: function() {someFunc(); } }) > > Maybe it will be helpful for somebody. > -- -- You received this message because you are subscribed to the Google Groups "Firebug" 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 https://groups.google.com/forum/#!forum/firebug --- You received this message because you are subscribed to the Google Groups "Firebug" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
