Made a bunch of fixes to the docs, per Sam's request. Also, did some re-organization...
[jquery.git] / build / docs / js / doc.js
index 8bd25b1..cf373ea 100644 (file)
@@ -11,14 +11,21 @@ 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(){
-                       $(this).html( $(this).html().replace(/\n\n/g, "<br/><br/>") );
-               });
+               $("div.more,div.short",this.parentNode.parentNode)
+                       .find("div.desc",function(){
+                               $(this).html( $(this).html().replace(/\n\n/g, "<br/><br/>") );
+                       })
+                       .toggle('slow');
                return false;
        });
-
-       $("#docs").alphaPager( 1 );
+       
+       $("#docs").alphaPager(function(a){
+               return $.fn.text.apply( [a.childNodes[1]] ).replace(/^\$\./,"").substr(0,1).toUpperCase();
+       });
 });