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:
330867a
)
little bug in $.fx.fadeTo
author
Gilles van den Hoven
<gilles0181@gmail.com>
Sat, 3 Jun 2006 12:48:19 +0000
(12:48 +0000)
committer
Gilles van den Hoven
<gilles0181@gmail.com>
Sat, 3 Jun 2006 12:48:19 +0000
(12:48 +0000)
fx/fx.js
patch
|
blob
|
history
diff --git
a/fx/fx.js
b/fx/fx.js
index
c7979fa
..
877ac3b
100644
(file)
--- a/
fx/fx.js
+++ b/
fx/fx.js
@@
-51,7
+51,7
@@
$.fn.fadeIn = function(a,o) {
$.fn.fadeTo = function(a,ev,o) {
o = $.speed(a,o);
return a ? this.each(function(){
- ef = new fx.Opacity(this,o);
+ ef = new $.fx.Opacity(this,o);
ef.custom(ef.cur(),parseFloat(ev));
ef.show();
}) : this._show();