X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=build%2Fdocs%2Fjs%2Fdoc.js;h=cf373eab51733a4b3e77db231d8874411583872e;hb=e2d3c4341908aa2a36023c91a8a684d10e93339a;hp=8bd25b1c3eba35f0c904da685f386ea0aefe29e5;hpb=51dd3736eb84b171b041f419f6fb8a7e8626b0f2;p=jquery.git diff --git a/build/docs/js/doc.js b/build/docs/js/doc.js index 8bd25b1..cf373ea 100644 --- a/build/docs/js/doc.js +++ b/build/docs/js/doc.js @@ -11,14 +11,21 @@ var types = { }; $(document).ready(function(){ - $("span.tooltip").ToolTipDemo('#fff'); + $("span.tooltip").each(function(){ + if ( types[ this.innerHTML ] ) + this.title = types[ this.innerHTML ]; + }).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) + .find("div.desc",function(){ + $(this).html( $(this).html().replace(/\n\n/g, "

") ); + }) + .toggle('slow'); return false; }); - - $("#docs").alphaPager( 1 ); + + $("#docs").alphaPager(function(a){ + return $.fn.text.apply( [a.childNodes[1]] ).replace(/^\$\./,"").substr(0,1).toUpperCase(); + }); });