aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBrandon Aaron <brandon.aaron@gmail.com>2009-05-07 18:09:17 +0000
committerBrandon Aaron <brandon.aaron@gmail.com>2009-05-07 18:09:17 +0000
commit09b59038a0d1b6a1e72d24b9cf86c2a9b2aa4d16 (patch)
tree4757915c7844c467dfd0918d99bc43eee263ccea /src
parentc41fab1eb099cd284b65c0d37431adfb38f4106a (diff)
downloadjquery-09b59038a0d1b6a1e72d24b9cf86c2a9b2aa4d16.tar.gz
jquery-09b59038a0d1b6a1e72d24b9cf86c2a9b2aa4d16.zip
unused, left-over code from r6344
Diffstat (limited to 'src')
-rw-r--r--src/event.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/event.js b/src/event.js
index 1aafcfa28..8cf96da50 100644
--- a/src/event.js
+++ b/src/event.js
@@ -524,7 +524,7 @@ jQuery.fn.extend({
}
fn = thisObject === undefined ? fn : jQuery.event.proxy( fn, thisObject );
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 this.each(function() {
- jQuery.event.add( this, type, one, data, thisObject );
+ jQuery.event.add( this, type, one, data );
});
},