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:
05aaa33
)
Make sure no exception is thrown if no event handler is found (which is the case...
author
jeresig
<jeresig@gmail.com>
Wed, 13 Jan 2010 16:24:54 +0000
(11:24 -0500)
committer
jeresig
<jeresig@gmail.com>
Wed, 13 Jan 2010 16:24:54 +0000
(11:24 -0500)
src/event.js
patch
|
blob
|
history
diff --git
a/src/event.js
b/src/event.js
index
0234998
..
c826f17
100644
(file)
--- a/
src/event.js
+++ b/
src/event.js
@@
-57,6
+57,12
@@
jQuery.event = {
handle = jQuery.data( elem, "handle", eventHandle );
}
+ // If no handle is found then we must be trying to bind to one of the
+ // banned noData elements
+ if ( !handle ) {
+ return;
+ }
+
// Add elem as a property of the handle function
// This is to prevent a memory leak with non-native
// event in IE.