]> source.dussan.org Git - jquery.git/commitdiff
No ticket: sync with master @ b75b9ef8
authorRichard Gibson <richard.gibson@gmail.com>
Mon, 14 Jan 2013 01:05:43 +0000 (20:05 -0500)
committerRichard Gibson <richard.gibson@gmail.com>
Mon, 14 Jan 2013 01:05:43 +0000 (20:05 -0500)
src/event.js

index 2c319f3e07751e04324b28fdf096223b2de899ec..6c0dc41ca89645e8bcffcf30ce5a755e967f4412 100644 (file)
@@ -237,7 +237,6 @@ jQuery.event = {
                        new jQuery.Event( type, typeof event === "object" && event );
 
                event.isTrigger = true;
-               event.type = type;
                event.namespace = namespaces.join(".");
                event.namespace_re = event.namespace ?
                        new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ) :
@@ -467,8 +466,8 @@ jQuery.event = {
                        event.target = originalEvent.srcElement || document;
                }
 
-               // Support: Safari
-               // Target should not be a text node (#504)
+               // Support: Chrome 23+, Safari?
+               // Target should not be a text node (#504, #13143)
                if ( event.target.nodeType === 3 ) {
                        event.target = event.target.parentNode;
                }