Commit graph

8 commits

Author SHA1 Message Date
Gilles van den Hoven 497bfb7909 -----
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]"
2006-05-27 10:18:18 +00:00
John Resig 956529c7be Added some final global variable tweaks - no more namespace leaking! 2006-05-17 03:55:50 +00:00
John Resig 4986837802 Not only does it pass the default JSLint settings, it also no longer leaks *any* global variables! 2006-05-17 02:42:03 +00:00
John Resig d71a85001b jQuery is now JSLint (jslint.com) compatible, save for the eval stuff. Can't there b
e legitamite uses for eval?
2006-05-16 22:15:05 +00:00
John Resig 904b1c337e Made it so that the height/width auto is only called when 'show' is executed. 2006-04-10 06:03:28 +00:00
John Resig 56992c6ad9 Added fix to stop height/width of auto from occurring when only opacity was being modified. 2006-04-08 06:34:04 +00:00
John Resig f0034d64e3 Fixed more formatting/tab problems. 2006-03-23 21:13:20 +00:00
John Resig 8a4a1edf04 Inital Import. 2006-03-22 03:33:07 +00:00