offset: make sure there is a parent node to work on while calculating scroll offsets...
[jquery.git] / build / docs / js / doc.js
index 4c607fe..b0d6989 100644 (file)
@@ -4,7 +4,7 @@ var types = {
        String: "A string of characters.",
        Number: "A numeric valid.",
        Element: "The Javascript object representation of a DOM Element.",
-       Hash: "A Javascript object that contains key/value pairs in the form of properties and values.",
+       Map: "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.",
@@ -13,10 +13,19 @@ var types = {
 };
 
 $(document).ready(function(){
-       $("span.tooltip").each(function(){
-               if ( types[ this.innerHTML ] )
+       var tooltips = $("span.tooltip").each(function() {
+               var type = this.innerHTML;
+               if( type.indexOf("|") != -1 ) {
+                       var $this = $(this).empty();
+                       $.each(type.split("\|"), function(i, n) {
+                               var title = types[n] && " title=\"" + types[n] + "\"" || "";
+                               var pipe = i != 0 ? "|" : "";
+                               $this.append( pipe + "<span class=\"tooltip\" " + title + ">" + n + "</span>" );
+                       });
+               } else if ( types[ this.innerHTML ] )
                        this.title = types[ this.innerHTML ];
-       }).ToolTipDemo('#fff');
+       })
+       tooltips.add($("span.tooltip", tooltips)).ToolTipDemo('#fff');
 
        $("a.name").click(function(){
                $("div.more,div.short",this.parentNode.parentNode).toggle();