diff options
author | Viktor Kojouharov <vkojouharov@gmail.com> | 2012-11-26 18:34:31 +0200 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-11-27 08:27:48 -0500 |
commit | c5e0961268577ff72f98d2ad79d8b9b98e3f75b1 (patch) | |
tree | c70c2574bddbcbb7ef5ad70172153b225486fd0c | |
parent | e6e706bbd66043f95f6f42a1258227dc2fbcb2b6 (diff) | |
download | jquery-ui-c5e0961268577ff72f98d2ad79d8b9b98e3f75b1.tar.gz jquery-ui-c5e0961268577ff72f98d2ad79d8b9b98e3f75b1.zip |
Effects: Use $ instead of jQuery in $.effects.animateClass. Fixes #8860 - Effects: Class animation has broken noConflict support.
-rw-r--r-- | ui/jquery.ui.effect.js | 2 |
1 files changed, 1 insertions, 1 deletions
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 ); |