diff options
author | Brandon Aaron <brandon.aaron@gmail.com> | 2006-10-10 17:48:43 +0000 |
---|---|---|
committer | Brandon Aaron <brandon.aaron@gmail.com> | 2006-10-10 17:48:43 +0000 |
commit | 692d676e993b198e30c8940ab61745d7578229bf (patch) | |
tree | 3c1a892fbab1c46e5408411f1d8395b1bdc0f15f /src/fx/fx.js | |
parent | cafd40805a20d02fe1a904a4c0a0cc6f0c525f80 (diff) | |
download | jquery-692d676e993b198e30c8940ab61745d7578229bf.tar.gz jquery-692d676e993b198e30c8940ab61745d7578229bf.zip |
Fix for #237
Diffstat (limited to 'src/fx/fx.js')
-rw-r--r-- | src/fx/fx.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fx/fx.js b/src/fx/fx.js index eee69de30..64449865b 100644 --- a/src/fx/fx.js +++ b/src/fx/fx.js @@ -315,7 +315,7 @@ jQuery.fn.extend({ animate: function(prop,speed,callback) { return this.queue(function(){ - this.curAnim = prop; + this.curAnim = jQuery.extend({}, prop); for ( var p in prop ) { var e = new jQuery.fx( this, jQuery.speed(speed,callback), p ); |