diff options
-rw-r--r-- | src/event.js | 2 | ||||
-rw-r--r-- | test/unit/event.js | 14 |
2 files changed, 0 insertions, 16 deletions
diff --git a/src/event.js b/src/event.js index 42bace43d..ee0af6179 100644 --- a/src/event.js +++ b/src/event.js @@ -819,8 +819,6 @@ jQuery.fn.extend({ } if ( fn === false ) { fn = returnFalse; - } else if ( !fn ) { - return this; } if ( one === 1 ) { diff --git a/test/unit/event.js b/test/unit/event.js index fef9e05fb..95f6f4b33 100644 --- a/test/unit/event.js +++ b/test/unit/event.js @@ -5,20 +5,6 @@ module( "event", { teardown: moduleTeardown }); -test("null or undefined handler", function() { - expect(2); - // Supports Fixes bug #7229 - try { - jQuery("#firstp").on( "click", null ); - ok(true, "Passing a null handler will not throw an exception"); - } catch ( e ) {} - - try { - jQuery("#firstp").on( "click", undefined ); - ok(true, "Passing an undefined handler will not throw an exception"); - } catch ( e ) {} -}); - test("on() with non-null,defined data", function() { expect(2); |