git.asbjorn.biz
/
jquery.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cafd408
)
Fix for #237
author
Brandon Aaron
<brandon.aaron@gmail.com>
Tue, 10 Oct 2006 17:48:43 +0000
(17:48 +0000)
committer
Brandon Aaron
<brandon.aaron@gmail.com>
Tue, 10 Oct 2006 17:48:43 +0000
(17:48 +0000)
src/fx/fx.js
patch
|
blob
|
history
diff --git
a/src/fx/fx.js
b/src/fx/fx.js
index
eee69de
..
6444986
100644
(file)
--- 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 );