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

Side by Side Diff: chrome/common/extensions/docs/templates/private/property.html

Issue 39113003: Docserver: Display enum value descriptions in API docs. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 1 month 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
OLDNEW
1 <dt> 1 <dt>
2 <span class="variable">{{name}}</span> 2 <span class="variable">{{name}}</span>
3 <span class="property"> 3 <span class="property">
4 ( 4 (
5 {{?optional}}<span class="optional">optional</span>{{/}} 5 {{?optional}}<span class="optional">optional</span>{{/}}
6 {{+partials.variable_type}} 6 {{+partials.variable_type}}
7 ) 7 )
8 </span> 8 </span>
9 </dt> 9 </dt>
10 {{?description}}<dd> 10 {{?description}}<dd>
11 {{{description}}} 11 {{{description}}}
12 </dd>{{/description}} 12 </dd>{{/description}}
13 {{?enum_values}}
14 <dl>
15 {{#enum_values}}
16 {{?@.description}}
17 <dd>
18 <dl>
19 <dt>{{name}}</dt>
20 <dd>
21 {{description}}
22 </dd>
23 </dl>
24 </dd>
25 {{/@.description}}
26 {{/enum_values}}
27 </dl>
28 {{/enum_values}}
13 {{?array.is_object}} 29 {{?array.is_object}}
14 <h4>Properties of each item</h4> 30 <h4>Properties of each item</h4>
15 {{+partials.type @:array}} 31 {{+partials.type @:array}}
16 {{/array.is_object}} 32 {{/array.is_object}}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698