git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8786fa5
)
Fixed event.handle to return undefined or false
author
Jörn Zaefferer
<joern.zaefferer@gmail.com>
Sun, 31 Dec 2006 00:44:09 +0000
(
00:44
+0000)
committer
Jörn Zaefferer
<joern.zaefferer@gmail.com>
Sun, 31 Dec 2006 00:44:09 +0000
(
00:44
+0000)
src/jquery/jquery.js
patch
|
blob
|
history
diff --git
a/src/jquery/jquery.js
b/src/jquery/jquery.js
index
62010e2
..
f945c24
100644
(file)
--- a/
src/jquery/jquery.js
+++ b/
src/jquery/jquery.js
@@
-2137,7
+2137,8
@@
jQuery.extend({
event = jQuery.event.fix( event || window.event || {} ); // Empty object is for triggered events with no data
- var returnValue = true;
+ // returned undefined or false
+ var returnValue;
var c = this.events[event.type];