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.


Reply via email to