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

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

Issue 10985071: Extensions Docs Server: Show properties of properties in the table of contents (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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
Index: chrome/common/extensions/docs/templates/private/api_property.html
diff --git a/chrome/common/extensions/docs/templates/private/api_property.html b/chrome/common/extensions/docs/templates/private/api_property.html
index 2bd48b0b54589fa4532a74593a1efa77bc706548..bf1de40f14e3b44e25616085a0a41f7f5e45c7af 100644
--- a/chrome/common/extensions/docs/templates/private/api_property.html
+++ b/chrome/common/extensions/docs/templates/private/api_property.html
@@ -9,7 +9,17 @@
{{?description}}<dd>
{{{description}}}
</dd>{{/description}}
- <dd><dl>{{#properties}}{{+partials.property}}{{/}}</dl></dd>
- <dd><dl>{{#functions}}{{+partials.function}}{{/}}</dl></dd>
+ {{?properties}}
+ <a name={{property.name}}-properties></a>
not at google - send to devlin 2012/09/28 04:03:11 I think this should actually be a <h4 id="...">Pro
cduvall 2012/09/29 00:37:49 Done.
+ <dd><dl>{{#properties}}
+ {{+partials.parameter_full prefix:property.name property:true}}
not at google - send to devlin 2012/09/28 04:03:11 "is_property" would be less confusing
cduvall 2012/09/29 00:37:49 Done.
+ {{/}}</dl></dd>
+ {{/properties}}
+ {{?functions}}
+ <a name={{property.name}}-functions></a>
not at google - send to devlin 2012/09/28 04:03:11 ditto
cduvall 2012/09/29 00:37:49 Done.
+ <dd><dl>{{#functions}}
+ {{+partials.function}}
+ {{/}}</dl></dd>
+ {{/functions}}
</div>
</div>

Powered by Google App Engine
This is Rietveld 408576698