Improved docs for append, prepend, before and after, merging the three pairs into one
[jquery.git] / build / docs / js / doc.js
index 8bd25b1..8a144f0 100644 (file)
@@ -7,18 +7,22 @@ var types = {
        Hash: "A Javascript object that contains key/value pairs in the form of properties and values.",
        "Array<Element>": "An Array of DOM Elements.",
        "Array<String>": "An Array of strings.",
-       Function: "A reference to a Javascript function."
+       Function: "A reference to a Javascript function.",
+       XMLHttpRequest: "An XMLHttpRequest object (referencing a HTTP request)."
 };
 
 $(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).toggle('slow');
                return false;
        });
-
-       $("#docs").alphaPager( 1 );
+       
+       $("#docs").alphaPager(function(a){
+               return $.fn.text.apply( [a.getElementsByTagName("span")[2]] ).replace(/^\$\./,"").substr(0,1).toUpperCase();
+       });
 });