From c5e0961268577ff72f98d2ad79d8b9b98e3f75b1 Mon Sep 17 00:00:00 2001 From: Viktor Kojouharov Date: Mon, 26 Nov 2012 18:34:31 +0200 Subject: [PATCH] Effects: Use $ instead of jQuery in $.effects.animateClass. Fixes #8860 - Effects: Class animation has broken noConflict support. --- ui/jquery.ui.effect.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/jquery.ui.effect.js b/ui/jquery.ui.effect.js index f703cdd84..d8d32e932 100644 --- a/ui/jquery.ui.effect.js +++ b/ui/jquery.ui.effect.js @@ -796,7 +796,7 @@ $.effects.animateClass = function( value, duration, easing, callback ) { allAnimations = allAnimations.map(function() { var styleInfo = this, dfd = $.Deferred(), - opts = jQuery.extend({}, o, { + opts = $.extend({}, o, { queue: false, complete: function() { dfd.resolve( styleInfo ); -- 2.39.5