From 69a7382fb71b1dade2284bca519c730b726d85d5 Mon Sep 17 00:00:00 2001 From: gnarf Date: Sun, 6 Mar 2011 21:16:56 -0600 Subject: [PATCH] effects.fade: Using $ instead of jQuery --- ui/jquery.effects.fade.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/jquery.effects.fade.js b/ui/jquery.effects.fade.js index c6cb85cc2..825c84e78 100644 --- a/ui/jquery.effects.fade.js +++ b/ui/jquery.effects.fade.js @@ -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(); } }); -- 2.39.5