Don't use for-in loops on Arrays. Fixes #7817. Thanks to dmethvin.
authorColin Snover <github.com@zetafleet.com>
Thu, 23 Dec 2010 00:31:33 +0000 (18:31 -0600)
committerColin Snover <github.com@zetafleet.com>
Thu, 23 Dec 2010 00:32:33 +0000 (18:32 -0600)
Conflicts:
src/manipulation.js

src/manipulation.js
src/xhr.js
test/unit/manipulation.js

index 3b9aa14..5f4b15d 100644 (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 );
                                }
                        }
                }
index 57903e0..4896e6c 100644 (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);
                }
                
index ba57a6f..da16354 100644 (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; }); };