Fix simulate() arg order.

This commit is contained in:
Dave Methvin 2011-08-16 12:56:19 -04:00 committed by timmywil
parent bb1081ee44
commit bd55f905a0

View File

@ -913,7 +913,7 @@ if ( !jQuery.support.focusinBubbles ) {
};
function handler( event ) {
simulate( fix, jQuery.event.fix( event ), event.target, true );
simulate( fix, event.target, jQuery.event.fix( event ), true );
}
});
}