From 681f4fd3cdd4bdd23edbba05ed1389fabed86b41 Mon Sep 17 00:00:00 2001 From: Ariel Flesler Date: Mon, 14 Sep 2009 22:58:20 +0000 Subject: [PATCH] jquery event: misc removal --- src/event.js | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/event.js b/src/event.js index 380d3d4..c3c978b 100644 --- a/src/event.js +++ b/src/event.js @@ -566,9 +566,7 @@ jQuery.each({ jQuery.fn.extend({ bind: function( type, data, fn, thisObject ) { if ( jQuery.isFunction( data ) ) { - if ( fn !== undefined ) { - thisObject = fn; - } + thisObject = fn; fn = data; data = undefined; } @@ -580,9 +578,7 @@ jQuery.fn.extend({ one: function( type, data, fn, thisObject ) { if ( jQuery.isFunction( data ) ) { - if ( fn !== undefined ) { - thisObject = fn; - } + thisObject = fn; fn = data; data = undefined; } -- 1.7.10.4