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:
dbca9cb
)
Fixed animating to 0% (Bug #1586).
author
John Resig
<jeresig@gmail.com>
Sat, 15 Sep 2007 03:26:33 +0000
(
03:26
+0000)
committer
John Resig
<jeresig@gmail.com>
Sat, 15 Sep 2007 03:26:33 +0000
(
03:26
+0000)
src/fx.js
patch
|
blob
|
history
diff --git
a/src/fx.js
b/src/fx.js
index
d75f3d0
..
a143df6
100644
(file)
--- a/
src/fx.js
+++ b/
src/fx.js
@@
-105,8
+105,8
@@
jQuery.fn.extend({
// We need to compute starting value
if ( unit != "px" ) {
- self.style[ name ] = end + unit;
- start = (end / e.cur(true)) * start;
+ self.style[ name ] = (end || 1) + unit;
+ start = ((end || 1) / e.cur(true)) * start;
self.style[ name ] = start + unit;
}