X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=src%2Ffx%2Ffx.js;h=3fd4990208b17df7fed6a12732b8353453fd28d1;hb=7d58c0f93698b85001ff68e1e2605930aec5e4df;hp=64449865bfdaae25088180d726acb6e6a41f5eee;hpb=692d676e993b198e30c8940ab61745d7578229bf;p=jquery.git diff --git a/src/fx/fx.js b/src/fx/fx.js index 6444986..3fd4990 100644 --- a/src/fx/fx.js +++ b/src/fx/fx.js @@ -305,6 +305,14 @@ jQuery.fn.extend({ * left: 50, opacity: 'show' * }, 500); * + * @test stop(); + * var hash = {opacity: 'show'}; + * var hashCopy = $.extend({}, hash); + * $('#foo').animate(hash, 'fast', function() { + * ok( hash.opacity == hashCopy.opacity, 'Check if animate changed the hash parameter' ); + * start(); + * }); + * * @name animate * @type jQuery * @param Hash params A set of style attributes that you wish to animate, and to what end. @@ -485,8 +493,6 @@ jQuery.extend({ // Remember where we started, so that we can go back to it later z.el.orig[prop] = this.cur(); - var start = z.el.orig[prop]; - // Begin the animation z.custom(0, z.el.orig[prop]);