-----
authorGilles van den Hoven <gilles0181@gmail.com>
Sat, 27 May 2006 10:18:18 +0000 (10:18 +0000)
committerGilles van den Hoven <gilles0181@gmail.com>
Sat, 27 May 2006 10:18:18 +0000 (10:18 +0000)
commit497bfb7909ada30e3410827808bc0c1a0d9843a7
treef6710e11c9edaba17e3a9134703213f1d3a09138
parentd8bad24d34b1d11893555ce35707cd2716d49adc
-----
fx.js
-----
added: $.fn.fadeTo
Also changed ' fx.Opacity ' function so $.fn.fadeTo works. For this i changed one line, and one parameter in $.fx.Opactity:
"o.io = o.now = 1;"
became:
"o.io = o.now = (sv || o.cur());"

e.g. if there is a start value use it. Else, the current value is used. All calls to "$.fx.Opactiy" which where present in the code have now "1" as third parameter so the code doesn't break.

---------
jquery.js
---------
Changed line 401 to fix ' name="id" ' bug:
'#': "a.id == m[2]"
to:
'#': "a.getAttribute('id') == m[2]"
fx/fx.js
jquery/jquery.js