1
0
Fork 0

IE does not like 'item' as a var name

closure/master
Mike Gerwitz 2010-12-28 09:04:27 -05:00
parent 2325bd9a8f
commit ac6fb40c21
1 changed files with 2 additions and 2 deletions

View File

@ -58,9 +58,9 @@ if ( get_set )
var chk_each = {};
for ( item in data )
for ( i in data )
{
chk_each[ item ] = 1;
chk_each[ i ] = 1;
}