aboutsummaryrefslogtreecommitdiffstats
path: root/src/jqLite.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/jqLite.js')
-rw-r--r--src/jqLite.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jqLite.js b/src/jqLite.js
index f8ed4d7d..331db68d 100644
--- a/src/jqLite.js
+++ b/src/jqLite.js
@@ -78,7 +78,7 @@ JQLite.prototype = {
bind[type] = eventHandler = function(event) {
var bubbleEvent = false;
foreach(eventHandler.fns, function(fn){
- bubbleEvent = bubbleEvent || fn.apply(self, arguments);
+ bubbleEvent = bubbleEvent || fn.call(self, event);
});
if (!bubbleEvent) {
event.preventDefault();