Fix #9593. Create a new jQuery.Event rather than a plain object when simulate()ing events. Fix a related issue with not passing src to jQuery.Event constructor.

This commit is contained in:
Dave Methvin 2011-09-08 15:59:23 -04:00 committed by timmywil
parent 619a89d5ff
commit 8c91da57b9

View File

@ -644,7 +644,7 @@ jQuery.Event = function( src, props ) {
}
// Create a timestamp if incoming event doesn't have one
this.timeStamp = src.timeStamp || jQuery.now();
this.timeStamp = src && src.timeStamp || jQuery.now();
// Mark it as fixed
this[ jQuery.expando ] = true;
@ -875,7 +875,7 @@ function simulate( type, elem, event, bubble ) {
// Piggyback on a donor event to simulate a different one.
// Fake originalEvent to avoid donor's stopPropagation, but if the
// simulated event prevents default then we do the same on the donor.
var e = jQuery.extend( {}, event, { type: type, originalEvent: {} } );
var e = jQuery.extend( new jQuery.Event(), event, { type: type, originalEvent: {} } );
if ( bubble ) {
jQuery.event.trigger( e, null, elem );
} else {