X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=build%2Fdocs%2Fjs%2Fdoc.js;h=8a144f0d0272dcc64d58f49d62b9cd11865656de;hb=6ac46e6a5a6cac509626267865980f4dfbeebc2d;hp=e2260d77b22cdb04bacedb60cf748543c1efdc99;hpb=7448c61ee2199f6f7002e33e533cebc42b000c89;p=jquery.git diff --git a/build/docs/js/doc.js b/build/docs/js/doc.js index e2260d7..8a144f0 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(){ @@ -17,11 +18,11 @@ $(document).ready(function(){ }).ToolTipDemo('#fff'); $("a.name").click(function(){ - $("div.more,div.short",this.parentNode.parentNode).toggle().find("div.desc",function(){ - $(this).html( $(this).html().replace(/\n\n/g, "

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