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:
8526de1
)
Revert fx.show to always take opacity from 0 to current opacity value.
author
Brandon Aaron
<brandon.aaron@gmail.com>
Tue, 10 Oct 2006 14:14:55 +0000
(14:14 +0000)
committer
Brandon Aaron
<brandon.aaron@gmail.com>
Tue, 10 Oct 2006 14:14:55 +0000
(14:14 +0000)
src/fx/fx.js
patch
|
blob
|
history
diff --git
a/src/fx/fx.js
b/src/fx/fx.js
index
b51129e
..
32d21d2
100644
(file)
--- a/
src/fx/fx.js
+++ b/
src/fx/fx.js
@@
-485,11
+485,10
@@
jQuery.extend({
// Remember where we started, so that we can go back to it later
z.el.orig[prop] = this.cur();
+ var start = z.el.orig[prop];
+
// Begin the animation
- if (prop == "opacity")
- z.custom(z.el.orig[prop], 1);
- else
- z.custom(0, z.el.orig[prop]);
+ z.custom(0, z.el.orig[prop]);
// Stupid IE, look what you made me do
if ( prop != "opacity" )