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:
e22336e
)
Animate should absolutely position if a number is passed (Ex: -700)
author
Sean Catchpole
<littlecooldude@gmail.com>
Wed, 12 Sep 2007 21:04:10 +0000
(21:04 +0000)
committer
Sean Catchpole
<littlecooldude@gmail.com>
Wed, 12 Sep 2007 21:04:10 +0000
(21:04 +0000)
src/fx.js
patch
|
blob
|
history
diff --git
a/src/fx.js
b/src/fx.js
index
1028610
..
495fe17
100644
(file)
--- a/
src/fx.js
+++ b/
src/fx.js
@@
-111,7
+111,7
@@
jQuery.fn.extend({
}
// If a +/- token was provided, we're doing a relative animation
- if ( parts[1] )
+ if ( parts[1] && typeof val != "number" )
end = ((parts[1] == "-" ? -1 : 1) * end) + start;
e.custom( start, end, unit );