matjaz
27 Jun 2007, 6:43 AM
It's no big deal, but it doesn't look nice. There is some "ci" global variable name popping on each page, where Ext is included. At least in Ext 1.1.beta1. So I hunted it down.
In DomQuery in function byAttribute() there is line
for(var i = 0; ci = cs[i]; i++){where ci variable is not defined so it registers as global.
for(var i = 0, ci; ci = cs[i]; i++){fixes that.
Hope it will be fixed in next beta.
Cheers B)
In DomQuery in function byAttribute() there is line
for(var i = 0; ci = cs[i]; i++){where ci variable is not defined so it registers as global.
for(var i = 0, ci; ci = cs[i]; i++){fixes that.
Hope it will be fixed in next beta.
Cheers B)