X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=build%2Fdocs%2Fjs%2Fdoc.js;h=b0d698992f021effccaf740f2868cd9427d27e16;hb=e2fc993334698b2a66dd24a671a9c23705df0fc3;hp=e5f7fcb9adab5ddc1ad75bfb344aa8adec55d003;hpb=c8009abcce562198cbc3930ed11f74dd62eba531;p=jquery.git diff --git a/build/docs/js/doc.js b/build/docs/js/doc.js index e5f7fcb..b0d6989 100644 --- a/build/docs/js/doc.js +++ b/build/docs/js/doc.js @@ -4,26 +4,35 @@ 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(){ - $("span.tooltip").each(function(){ - if ( types[ this.innerHTML ] ) + var tooltips = $("span.tooltip").each(function() { + var type = this.innerHTML; + if( type.indexOf("|") != -1 ) { + var $this = $(this).empty(); + $.each(type.split("\|"), function(i, n) { + var title = types[n] && " title=\"" + types[n] + "\"" || ""; + var pipe = i != 0 ? "|" : ""; + $this.append( pipe + "" + n + "" ); + }); + } else if ( types[ this.innerHTML ] ) this.title = types[ this.innerHTML ]; - }).ToolTipDemo('#fff'); + }) + tooltips.add($("span.tooltip", tooltips)).ToolTipDemo('#fff'); $("a.name").click(function(){ - $("div.more,div.short",this.parentNode.parentNode) - .find("div.desc",function(){ - $(this).html( $(this).html().replace(/\n\n/g, "

") ); - }) - .toggle('slow'); + $("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(); + }); });