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

Side by Side 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, 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <div> 1 <div>
2 <a name="property-{{name}}"></a> 2 <a name="property-{{name}}"></a>
not at google - send to devlin 2012/09/28 04:03:11 move name onto id of the property
cduvall 2012/09/29 00:37:49 Done.
3 <h4>{{name}}</h4> 3 <h4>{{name}}</h4>
4 <div class="summary"> 4 <div class="summary">
5 <span>chrome.{{api.name}}.{{name}}</span> 5 <span>chrome.{{api.name}}.{{name}}</span>
6 </div> 6 </div>
7 <div> 7 <div>
8 <dt><span class="property">{{name}}</span> {{+partials.type_name}}</dt> 8 <dt><span class="property">{{name}}</span> {{+partials.type_name}}</dt>
9 {{?description}}<dd> 9 {{?description}}<dd>
10 {{{description}}} 10 {{{description}}}
11 </dd>{{/description}} 11 </dd>{{/description}}
12 <dd><dl>{{#properties}}{{+partials.property}}{{/}}</dl></dd> 12 {{?properties}}
13 <dd><dl>{{#functions}}{{+partials.function}}{{/}}</dl></dd> 13 <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.
14 <dd><dl>{{#properties}}
15 {{+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.
16 {{/}}</dl></dd>
17 {{/properties}}
18 {{?functions}}
19 <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.
20 <dd><dl>{{#functions}}
21 {{+partials.function}}
22 {{/}}</dl></dd>
23 {{/functions}}
14 </div> 24 </div>
15 </div> 25 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698