X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=build%2Fdocs%2Fjs%2Fdoc.js;h=4beeb43515dbadbc0bfe9af76367a9687649922c;hb=458d427c0e4af4502e14400110b5327aa2513781;hp=ec52b664d438e0338973ea7d2aaa88433da05c83;hpb=ccf9d4406296fed48aae0989f2303287f133ed9e;p=jquery.git diff --git a/build/docs/js/doc.js b/build/docs/js/doc.js index ec52b66..4beeb43 100644 --- a/build/docs/js/doc.js +++ b/build/docs/js/doc.js @@ -4,10 +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." + Function: "A reference to a Javascript function.", + 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(){ @@ -17,11 +19,11 @@ $(document).ready(function(){ }).ToolTipDemo('#fff'); $("a.name").click(function(){ - $("div.more,div.short",this.parentNode.parentNode).toggle('slow').find("div.desc",function(){ - $(this).html( $(this).html().replace(/\n\n/g, "

") ); - }); + $("div.more,div.short",this.parentNode.parentNode).toggle(); return false; }); - - $("#docs").alphaPager( 1 ); + + $("#docs").alphaPager(function(a){ + return $.fn.text.apply( [a.getElementsByTagName("span")[2]] ).replace(/^\$\./,"").substr(0,1).toUpperCase(); + }); });