]> source.dussan.org Git - jquery.git/commitdiff
Revert "Make sure that mousing over Chrome "internal div" elements results in no...
authorAnton M <obhvsbypqghgc@gmail.com>
Tue, 8 Feb 2011 16:08:25 +0000 (17:08 +0100)
committerAnton M <obhvsbypqghgc@gmail.com>
Tue, 8 Feb 2011 16:08:25 +0000 (17:08 +0100)
This reverts commit 4a828c93d40eb67b2041b08bbed0f1973442bd03.

src/event.js

index a17cf8947beadcd359c775a85aed48cbfc05346e..f3a5d9f49a15ad4fc537d11bb85ed6fb6af12d83 100644 (file)
@@ -652,15 +652,13 @@ 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 && parent !== this ) {
+               if ( parent !== this ) {
                        // set the correct event type
                        event.type = event.data;