Use a for loop rather than for/in loop when copying events, so that code will work with an augmented Array.prototype. Fixes 7809.

This commit is contained in:
Dave Methvin 2010-12-20 22:23:59 -05:00
parent 291b1edf44
commit 4424bda377
2 changed files with 8 additions and 5 deletions

View file

@ -370,14 +370,14 @@ function root( elem, cur ) {
}
function cloneCopyEvent(orig, ret) {
var i = 0;
var node = 0;
ret.each(function() {
if ( this.nodeType !== 1 || this.nodeName !== (orig[i] && orig[i].nodeName) ) {
if ( this.nodeType !== 1 || this.nodeName !== (orig[node] && orig[node].nodeName) ) {
return;
}
var oldData = jQuery.data( orig[i++] ),
var oldData = jQuery.data( orig[node++] ),
curData = jQuery.data( this, oldData ),
events = oldData && oldData.events;
@ -386,8 +386,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

@ -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; }); };