X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=build%2Fdocs%2Fjs%2Fdoc.js;h=dcf42a5c0f835ca2ec103e33161a97caeeeb1b57;hb=fb11b33d68f64ea446f2f8c6d3ef2aed3652349f;hp=cf373eab51733a4b3e77db231d8874411583872e;hpb=025049a67a01399b38281bed9af189be5395c46d;p=jquery.git diff --git a/build/docs/js/doc.js b/build/docs/js/doc.js index cf373ea..dcf42a5 100644 --- a/build/docs/js/doc.js +++ b/build/docs/js/doc.js @@ -7,7 +7,8 @@ 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(){ @@ -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, "

") ); - }) + }).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(); }); });