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:
ccabf28
)
Added a step callback to be executed on every step of an fx animation.
author
John Resig
<jeresig@gmail.com>
Tue, 22 Aug 2006 05:35:48 +0000
(
05:35
+0000)
committer
John Resig
<jeresig@gmail.com>
Tue, 22 Aug 2006 05:35:48 +0000
(
05:35
+0000)
src/fx/fx.js
patch
|
blob
|
history
diff --git
a/src/fx/fx.js
b/src/fx/fx.js
index
de65cfa
..
eb27c3a
100644
(file)
--- a/
src/fx/fx.js
+++ b/
src/fx/fx.js
@@
-373,7
+373,8
@@
jQuery.extend({
// The users options
z.o = {
duration: options.duration || 400,
- complete: options.complete
+ complete: options.complete,
+ step: options.step
};
// The element
@@
-384,6
+385,9
@@
jQuery.extend({
// Simple function for setting a style value
z.a = function(){
+ if ( options.step )
+ options.step.apply( elem, [ z.now ] );
+
if ( prop == "opacity" ) {
if (z.now == 1) z.now = 0.9999;
if (window.ActiveXObject)