Skip to content

Commit

Permalink
#7883 .delegate and .live should accept false as the fn arg, like bind
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaldron committed Jan 1, 2011
1 parent eed3803 commit 612a908
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/event.js
Expand Up @@ -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(" ");

Expand Down
39 changes: 39 additions & 0 deletions test/unit/event.js
Expand Up @@ -527,6 +527,45 @@ test("bind(name, false), unbind(name, false)", function() {
equals( main, 1, "Verify that the trigger happened correctly." );
});

test("live(name, false), die(name, false)", function() {
expect(3);

var main = 0;
jQuery("#main").live("click", function(e){ main++; });
jQuery("#ap").trigger("click");
equals( main, 1, "Verify that the trigger happened correctly." );

main = 0;
jQuery("#ap").live("click", false);
jQuery("#ap").trigger("click");
equals( main, 0, "Verify that no bubble happened." );

main = 0;
jQuery("#ap").die("click", false);
jQuery("#ap").trigger("click");
equals( main, 1, "Verify that the trigger happened correctly." );
});

test("delegate(selector, name, false), undelegate(selector, name, false)", function() {
expect(3);

var main = 0;

jQuery("#main").delegate("#ap", "click", function(e){ main++; });
jQuery("#ap").trigger("click");
equals( main, 1, "Verify that the trigger happened correctly." );

main = 0;
jQuery("#ap").delegate("#groups", "click", false);
jQuery("#groups").trigger("click");
equals( main, 0, "Verify that no bubble happened." );

main = 0;
jQuery("#ap").undelegate("#groups", "click", false);
jQuery("#groups").trigger("click");
equals( main, 1, "Verify that the trigger happened correctly." );
});

test("bind()/trigger()/unbind() on plain object", function() {
expect( 8 );

Expand Down

0 comments on commit 612a908

Please sign in to comment.