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:
e4a62e4
)
Absolutely position animations, damn my twichy fingers for commiting too soon.
author
Sean Catchpole
<littlecooldude@gmail.com>
Wed, 12 Sep 2007 22:16:43 +0000
(22:16 +0000)
committer
Sean Catchpole
<littlecooldude@gmail.com>
Wed, 12 Sep 2007 22:16:43 +0000
(22:16 +0000)
src/fx.js
patch
|
blob
|
history
diff --git
a/src/fx.js
b/src/fx.js
index
495fe17
..
87af7e0
100644
(file)
--- a/
src/fx.js
+++ b/
src/fx.js
@@
-111,9
+111,12
@@
jQuery.fn.extend({
}
// If a +/- token was provided, we're doing a relative animation
- if ( parts[1] && typeof val != "number" )
+ if ( parts[1] )
end = ((parts[1] == "-" ? -1 : 1) * end) + start;
+ // Absolutely position numbers
+ if( typeof val == "number") end = val;
+
e.custom( start, end, unit );
} else
e.custom( start, val, "" );