diff options
author | John Resig <jeresig@gmail.com> | 2006-08-14 01:46:05 +0000 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2006-08-14 01:46:05 +0000 |
commit | 7448c61ee2199f6f7002e33e533cebc42b000c89 (patch) | |
tree | 71e0d08a590cf2ce29cc49057b7f4a76037f62c2 /build/docs/js | |
parent | 61aab47bcf4c35d021a88d95b7a17643d1342596 (diff) | |
download | jquery-7448c61ee2199f6f7002e33e533cebc42b000c89.tar.gz jquery-7448c61ee2199f6f7002e33e533cebc42b000c89.zip |
Massive overhauls to the test suite - it is now generated dynamically, along with the documentation.
Diffstat (limited to 'build/docs/js')
-rw-r--r-- | build/docs/js/doc.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/build/docs/js/doc.js b/build/docs/js/doc.js index 8bd25b1c3..e2260d77b 100644 --- a/build/docs/js/doc.js +++ b/build/docs/js/doc.js @@ -11,7 +11,10 @@ var types = { }; $(document).ready(function(){ - $("span.tooltip").ToolTipDemo('#fff'); + $("span.tooltip").each(function(){ + if ( types[ this.innerHTML ] ) + this.title = types[ this.innerHTML ]; + }).ToolTipDemo('#fff'); $("a.name").click(function(){ $("div.more,div.short",this.parentNode.parentNode).toggle().find("div.desc",function(){ |