diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2007-01-11 18:40:34 +0000 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2007-01-11 18:40:34 +0000 |
commit | f368960479a1b8f7904bc2ca65a7a9cd74cc5a13 (patch) | |
tree | 24850b9d41d7a4ed2c6729091b900d5d1b99c3d8 /build | |
parent | 6350e8a7e027de13e33116ffd130260bda64e4bf (diff) | |
download | jquery-f368960479a1b8f7904bc2ca65a7a9cd74cc5a13.tar.gz jquery-f368960479a1b8f7904bc2ca65a7a9cd74cc5a13.zip |
API docs: Hacked multiple argument types like "Element|jQuery|String" representation into multiple elements, each with theier own tooltip
Diffstat (limited to 'build')
-rw-r--r-- | build/docs/js/doc.js | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/build/docs/js/doc.js b/build/docs/js/doc.js index 4beeb4351..b0d698992 100644 --- a/build/docs/js/doc.js +++ b/build/docs/js/doc.js @@ -13,10 +13,19 @@ var types = { }; $(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 + "<span class=\"tooltip\" " + title + ">" + n + "</span>" ); + }); + } 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).toggle(); |