unused, left-over code from r6344
This commit is contained in:
parent
c41fab1eb0
commit
09b59038a0
1 changed files with 2 additions and 2 deletions
|
@ -524,7 +524,7 @@ jQuery.fn.extend({
|
||||||
}
|
}
|
||||||
fn = thisObject === undefined ? fn : jQuery.event.proxy( fn, thisObject );
|
fn = thisObject === undefined ? fn : jQuery.event.proxy( fn, thisObject );
|
||||||
return type === "unload" ? this.one(type, data, fn, thisObject) : this.each(function() {
|
return type === "unload" ? this.one(type, data, fn, thisObject) : this.each(function() {
|
||||||
jQuery.event.add( this, type, fn, data, thisObject );
|
jQuery.event.add( this, type, fn, data );
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -542,7 +542,7 @@ jQuery.fn.extend({
|
||||||
return fn.apply( this, arguments );
|
return fn.apply( this, arguments );
|
||||||
});
|
});
|
||||||
return this.each(function() {
|
return this.each(function() {
|
||||||
jQuery.event.add( this, type, one, data, thisObject );
|
jQuery.event.add( this, type, one, data );
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue