Don't use for-in loops on Arrays. Fixes #7817. Thanks to dmethvin.

Conflicts:
	src/manipulation.js
This commit is contained in:
Colin Snover 2010-12-22 18:31:33 -06:00
commit 82ac384b49
3 changed files with 6 additions and 3 deletions

View file

@ -390,8 +390,8 @@ function cloneCopyEvent(orig, ret) {
curData.events = {};
for ( var type in events ) {
for ( var handler in events[ type ] ) {
jQuery.event.add( this, type, events[ type ][ handler ], events[ type ][ handler ].data );
for ( var i = 0, l = events[ type ].length; i < l; i++ ) {
jQuery.event.add( this, type, events[ type ][ i ], events[ type ][ i ].data );
}
}
}

View file

@ -87,7 +87,7 @@ jQuery.xhr = function( _native ) {
}
// Apply option prefilters
for (i in prefilters) {
for ( i = 0; i < prefilters.length; i++ ) {
prefilters[i](s);
}

View file

@ -1,5 +1,8 @@
module("manipulation");
// Ensure that an extended Array prototype doesn't break jQuery
Array.prototype.arrayProtoFn = function(arg) { throw("arrayProtoFn should not be called"); };
var bareObj = function(value) { return value; };
var functionReturningObj = function(value) { return (function() { return value; }); };