Skip to content
Permalink
Browse files
Fixed issue with broken .trigger().
  • Loading branch information
jeresig committed Jul 17, 2006
1 parent 82e217c commit 954554e
Showing 1 changed file with 2 additions and 2 deletions.
@@ -1076,8 +1076,8 @@ new function() {
* @type jQuery
* @param String type An event type
*/
trigger: function( type ) {
jQuery.event.trigger( this, type );
trigger: function( type, data ) {
jQuery.event.trigger( type, data, this );
}
};

0 comments on commit 954554e

Please sign in to comment.