Ticket #8753 Always set event type explicitly

This commit is contained in:
Rick Waldon 2011-04-11 11:32:23 -04:00
parent 6591f6dd9d
commit 868e1e28ce

View file

@ -574,6 +574,9 @@ jQuery.Event = function( src ) {
} }
} }
// Always ensure a type has been explicitly set
this.type = src.type;
// Events bubbling up the document may have been marked as prevented // Events bubbling up the document may have been marked as prevented
// by a handler lower down the tree; reflect the correct value. // by a handler lower down the tree; reflect the correct value.
this.isDefaultPrevented = (src.defaultPrevented || src.returnValue === false || this.isDefaultPrevented = (src.defaultPrevented || src.returnValue === false ||