Changed "Hash" to "Map" in docs
[jquery.git] / build / docs / js / doc.js
index 8a144f0..4beeb43 100644 (file)
@@ -4,11 +4,12 @@ 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.",
-       XMLHttpRequest: "An XMLHttpRequest object (referencing a HTTP request)."
+       XMLHttpRequest: "An XMLHttpRequest object (referencing a HTTP request).",
+       "<Content>": "A String (to generate HTML on-the-fly), a DOM Element, an Array of DOM Elements or a jQuery object"
 };
 
 $(document).ready(function(){
@@ -18,7 +19,7 @@ $(document).ready(function(){
        }).ToolTipDemo('#fff');
 
        $("a.name").click(function(){
-               $("div.more,div.short",this.parentNode.parentNode).toggle('slow');
+               $("div.more,div.short",this.parentNode.parentNode).toggle();
                return false;
        });