aboutsummaryrefslogtreecommitdiffstats
path: root/build/docs/js
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2006-08-14 01:46:05 +0000
committerJohn Resig <jeresig@gmail.com>2006-08-14 01:46:05 +0000
commit7448c61ee2199f6f7002e33e533cebc42b000c89 (patch)
tree71e0d08a590cf2ce29cc49057b7f4a76037f62c2 /build/docs/js
parent61aab47bcf4c35d021a88d95b7a17643d1342596 (diff)
downloadjquery-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.js5
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(){