Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(283)

Unified Diff: chrome/common/extensions/docs/templates/private/function_details.html

Issue 99703004: Docserver: Fix the TOC rendering for API references by fixing the haphazard way (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/docs/templates/private/function_details.html
diff --git a/chrome/common/extensions/docs/templates/private/function_details.html b/chrome/common/extensions/docs/templates/private/function_details.html
index c52f59c9d81a91e040b07d9af1e402dd746ac3d4..9322ce117b7d5ad220b93e55ab69b8a581c92388 100644
--- a/chrome/common/extensions/docs/templates/private/function_details.html
+++ b/chrome/common/extensions/docs/templates/private/function_details.html
@@ -11,10 +11,13 @@
</p>
{{/description}}
{{?parameters}}
- <h4>Parameters</h4>
+ <h4 title="">Parameters</h4>
<dl>
{{#p:parameters}}
- {{+partials.parameter_full parameter:p/}}
+ {{+partials.parameter_full
+ parameter:p
+ parentName:name
+ hideParamTOC:true /}}
{{/parameters}}
</dl>
{{/parameters}}
@@ -22,7 +25,7 @@
{{+partials.callback callback:callback/}}
{{/callback}}
{{?returns.is_object}}
- <h4>Properties of return type</h4>
+ <h4 title="">Properties of return type</h4>
{{+partials.type type:returns/}}
{{/returns.is_object}}
</div>

Powered by Google App Engine
This is Rietveld 408576698