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:
534dbd6
)
Make sure that mousing over Chrome "internal div" elements results in no trigger...
author
Anton M
<obhvsbypqghgc@gmail.com>
Tue, 8 Feb 2011 15:57:06 +0000
(16:57 +0100)
committer
Anton M
<obhvsbypqghgc@gmail.com>
Tue, 8 Feb 2011 15:57:06 +0000
(16:57 +0100)
src/event.js
patch
|
blob
|
history
diff --git
a/src/event.js
b/src/event.js
index
f3a5d9f
..
a17cf89
100644
(file)
--- a/
src/event.js
+++ b/
src/event.js
@@
-652,13
+652,15
@@
var withinElement = function( event ) {
// Firefox sometimes assigns relatedTarget a XUL element
// which we cannot access the parentNode property of
+ // Chrome does something similar, the parentNode property
+ // can be accessed but is null.
try {
// Traverse up the tree
while ( parent && parent !== this ) {
parent = parent.parentNode;
}
- if ( parent !== this ) {
+ if ( parent && parent !== this ) {
// set the correct event type
event.type = event.data;