Reputation: 10376
ExtJS 1.7.3 on FF 3.6 ² keeps stopping on this line 9863, every time I load my page:
9860 try{
9861 var ssRules = ss.cssRules || ss.rules;
9862 for(var j = ssRules.length-1; j >= 0; --j){
9863 rules[ssRules[j].selectorText.toLowerCase()] = ssRules[j];
9864 }
9865 }catch(e){}
just as if I had set a breakpoint. Pressing continue (F8) and everything goes on, just like with a breakpoint. But there 100% certainly is no such thing...
Huh? Anyone has any idea?
² no, I don't want to upgrade, I need to test under this configuration.
Upvotes: 0
Views: 269
Reputation: 1784
I had this problem and fixed it like so:
Hope this helps!
Upvotes: 1
Reputation: 35054
When you say "stopping", do you mean in Firebug or something? If so, do you just have break-on-exception enabled?
Upvotes: 0