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

Side by Side Diff: chrome/common/extensions/docs/templates/private/type.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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/extensions/docs/templates/private/toc_types.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <div> 1 <div>
2 <a name="type-{{name}}"></a> 2 <h3 id="{{id}}">{{name}}</h3>
3 <h4>{{name}}</h4>
4 <div> 3 <div>
5 <dt>{{+partials.type_name}}</dt> 4 <dt>{{+partials.type_name}}</dt>
6 {{?description}}<dd> 5 {{?description}}<dd>
7 {{{description}}} 6 {{{description}}}
8 </dd>{{/description}} 7 </dd>{{/description}}
9 {{?properties}} 8 {{?properties}}
10 <dd><dl>{{#properties}}{{^additional_properties}} 9 <h4 id="{{type.name}}-properties">
10 Properties of <a href="#type-{{type.name}}">{{type.name}}</a>
11 </h4>
12 <dd><dl>{{#properties}}
11 {{+partials.parameter_full}} 13 {{+partials.parameter_full}}
12 {{/}}{{/}}</dl></dd> 14 {{/}}</dl></dd>
13 {{/properties}} 15 {{/properties}}
14 {{?functions}} 16 {{?functions}}
15 <a name={{type.name}}-methods></a> 17 <h4 id="{{type.name}}-methods">
16 <dd><h3>Methods of {{type.name}}</h3> 18 Methods of <a href="#type-{{type.name}}">{{type.name}}</a>
17 <dd><dl>{{#functions}}{{+partials.function api:api prefix:type.name}}{{/}} </dl></dd> 19 </h4>
20 <dd><dl>{{#functions}}
21 {{+partials.function api:api}}
22 {{/}}</dl></dd>
18 {{/functions}} 23 {{/functions}}
19 {{?events}} 24 {{?events}}
20 <a name={{type.name}}-events></a> 25 <h4 id="{{type.name}}-events">
21 <dd><h3>Events of {{type.name}}</h3> 26 Events of <a href="#type-{{type.name}}">{{type.name}}</a>
22 <dd><dl>{{#events}}{{+partials.event api:api prefix:type.name}}{{/}}</dl>< /dd> 27 </h4>
28 <dd><dl>{{#events}}
29 {{+partials.event api:api}}
30 {{/}}</dl></dd>
23 {{/events}} 31 {{/events}}
24 </div> 32 </div>
25 </div> 33 </div>
OLDNEW
« no previous file with comments | « chrome/common/extensions/docs/templates/private/toc_types.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698