X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=build%2Fdocs%2Fjs%2Fdoc.js;h=cf373eab51733a4b3e77db231d8874411583872e;hb=327bfb88a2ea85a9a30e5f5a1687d9ac399aa3f1;hp=ec52b664d438e0338973ea7d2aaa88433da05c83;hpb=ccf9d4406296fed48aae0989f2303287f133ed9e;p=jquery.git diff --git a/build/docs/js/doc.js b/build/docs/js/doc.js index ec52b66..cf373ea 100644 --- a/build/docs/js/doc.js +++ b/build/docs/js/doc.js @@ -17,11 +17,15 @@ $(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) + .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(); + }); });