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:
692d676
)
Added test for #237
author
Brandon Aaron
<brandon.aaron@gmail.com>
Tue, 10 Oct 2006 21:28:00 +0000
(21:28 +0000)
committer
Brandon Aaron
<brandon.aaron@gmail.com>
Tue, 10 Oct 2006 21:28:00 +0000
(21:28 +0000)
src/fx/fx.js
patch
|
blob
|
history
diff --git
a/src/fx/fx.js
b/src/fx/fx.js
index
6444986
..
6bbc772
100644
(file)
--- 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.