mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Quick code optimization in trigger.
This commit is contained in:
parent
9141004442
commit
e45dbf29f8
@ -74,15 +74,13 @@ jQuery.event = {
|
||||
data = jQuery.makeArray(data || []);
|
||||
|
||||
// Handle a global trigger
|
||||
if ( !element ) {
|
||||
var g = this.global[type];
|
||||
if ( g )
|
||||
jQuery.each( g, function(){
|
||||
if ( !element )
|
||||
jQuery.each( this.global[type] || [], function(){
|
||||
jQuery.event.trigger( type, data, this );
|
||||
});
|
||||
|
||||
// Handle triggering a single element
|
||||
} else if ( element["on" + type] ) {
|
||||
else if ( element["on" + type] ) {
|
||||
// Pass along a fake event
|
||||
data.unshift( this.fix({ type: type, target: element }) );
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user