Fixed an issue with .find(expr,Function) and a Safari bug.
authorJohn Resig <jeresig@gmail.com>
Tue, 12 Dec 2006 18:26:52 +0000 (18:26 +0000)
committerJohn Resig <jeresig@gmail.com>
Tue, 12 Dec 2006 18:26:52 +0000 (18:26 +0000)
build/docs/js/doc.js

index cf373ea..dcf42a5 100644 (file)
@@ -7,7 +7,8 @@ var types = {
        Hash: "A Javascript object that contains key/value pairs in the form of properties and values.",
        "Array&lt;Element&gt;": "An Array of DOM Elements.",
        "Array&lt;String&gt;": "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(){
@@ -18,14 +19,14 @@ $(document).ready(function(){
 
        $("a.name").click(function(){
                $("div.more,div.short",this.parentNode.parentNode)
-                       .find("div.desc",function(){
+                       .find("div.desc").each(function(){
                                $(this).html( $(this).html().replace(/\n\n/g, "<br/><br/>") );
-                       })
+                       }).end()
                        .toggle('slow');
                return false;
        });
        
        $("#docs").alphaPager(function(a){
-               return $.fn.text.apply( [a.childNodes[1]] ).replace(/^\$\./,"").substr(0,1).toUpperCase();
+               return $.fn.text.apply( [a.getElementsByTagName("span")[2]] ).replace(/^\$\./,"").substr(0,1).toUpperCase();
        });
 });