effects.fade: Using $ instead of jQuery

This commit is contained in:
gnarf 2011-03-06 21:16:56 -06:00
parent 703cd82cd0
commit 69a7382fb7

View File

@ -24,7 +24,7 @@ $.effects.fade = function( o ) {
duration: o.duration,
easing: o.easing,
complete: function() {
jQuery.isFunction( o.complete ) && o.complete.apply( this, arguments );
$.isFunction( o.complete ) && o.complete.apply( this, arguments );
el.dequeue();
}
});