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

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

Issue 11031061: Merge 160302 - Extensions Docs Server: Show properties of properties in the table of contents (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1284/src/
Patch Set: Created 8 years, 2 months 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
« no previous file with comments | « no previous file | chrome/common/extensions/docs/templates/private/api_reference.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/docs/templates/private/api_property.html
===================================================================
--- chrome/common/extensions/docs/templates/private/api_property.html (revision 160305)
+++ chrome/common/extensions/docs/templates/private/api_property.html (working copy)
@@ -1,6 +1,5 @@
<div>
- <a name="property-{{name}}"></a>
- <h4>{{name}}</h4>
+ <h3 id="{{id}}">{{name}}</h3>
<div class="summary">
<span>chrome.{{api.name}}.{{name}}</span>
</div>
@@ -9,7 +8,21 @@
{{?description}}<dd>
{{{description}}}
</dd>{{/description}}
- <dd><dl>{{#properties}}{{+partials.property}}{{/}}</dl></dd>
- <dd><dl>{{#functions}}{{+partials.function}}{{/}}</dl></dd>
+ {{?properties}}
+ <h4 id="{{property.name}}-properties">
+ Properties of <a href="#property-{{property.name}}">{{property.name}}</a>
+ </h4>
+ <dd><dl>{{#properties}}
+ {{+partials.parameter_full}}
+ {{/}}</dl></dd>
+ {{/properties}}
+ {{?functions}}
+ <h4 id="{{property.name}}-functions">
+ Methods of <a href="#property-{{property.name}}">{{property.name}}</a>
+ </h4>
+ <dd><dl>{{#functions}}
+ {{+partials.function}}
+ {{/}}</dl></dd>
+ {{/functions}}
</div>
</div>
« no previous file with comments | « no previous file | chrome/common/extensions/docs/templates/private/api_reference.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698