From f368960479a1b8f7904bc2ca65a7a9cd74cc5a13 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=B6rn=20Zaefferer?= Date: Thu, 11 Jan 2007 18:40:34 +0000 Subject: [PATCH] API docs: Hacked multiple argument types like "Element|jQuery|String" representation into multiple elements, each with theier own tooltip --- build/docs/js/doc.js | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/build/docs/js/doc.js b/build/docs/js/doc.js index 4beeb43..b0d6989 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 + "" + 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).toggle(); -- 1.7.10.4