e.preventDefault();
// and execute the function
- return jQuery.apply( this, this.last, [e] ) || false;
+ return this.last.apply( this, [e] ) || false;
}) :
// Otherwise, execute the old toggle function
if ( p == this ) return false;
// Execute the right function
- return (e.type == "mouseover" ? f : g).apply(this,[e]);
+ return (e.type == "mouseover" ? f : g).apply(this, [e]);
}
// Bind the function to the two event listeners
// If the DOM is already ready
if ( jQuery.isReady )
// Execute the function immediately
- jQuery.apply( document, f );
+ f.apply( document );
// Otherwise, remember the function for later
else {
this[o+f]++;
// And execute the bound function
- return jQuery.apply(this,f,[e]);
+ return f.apply(this, [e]);
});
};
if ( jQuery.readyList ) {
// Execute all of them
for ( var i = 0; i < jQuery.readyList.length; i++ )
- jQuery.apply( document, jQuery.readyList[i] );
+ jQuery.readyList[i].apply( document );
// Reset the list of functions
jQuery.readyList = null;