#7883 .delegate and .live should accept false as the fn arg, like bind

This commit is contained in:
rwldrn 2011-01-01 13:49:59 -05:00
parent eed3803c98
commit 612a908514
2 changed files with 45 additions and 1 deletions

View file

@ -1023,10 +1023,15 @@ jQuery.each(["live", "die"], function( i, name ) {
return this;
}
if ( jQuery.isFunction( data ) ) {
if ( jQuery.isFunction( data ) || data === false ) {
fn = data;
data = undefined;
}
if ( fn === false ) {
fn = returnFalse;
}
types = (types || "").split(" ");