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

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

Issue 61733018: Docserver: Update to the latest version of handlebar. Lots of re-syntaxifying. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments, rebase 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 | Annotate | Revision Log
OLDNEW
1 {{#property}}
1 <div> 2 <div>
2 <h3 id="{{id}}">{{name}}</h3> 3 <h3 id="{{id}}">{{name}}</h3>
3 <div class="summary"> 4 <div class="summary">
4 <div class="line">{{+partials.api_namespace api:api}}{{name}}</div> 5 <div class="line">{{+partials.api_namespace api:api/}}{{name}}</div>
5 </div> 6 </div>
6 <div> 7 <div>
7 <dt><span class="property">{{name}}</span> {{+partials.type_name link:link @ :property}}</dt> 8 <dt><span class="property">{{name}}</span> {{+partials.type_name link:link t ype:property/}}</dt>
8 {{?description}}<dd> 9 {{?description}}<dd>
9 {{{description}}} 10 {{{description}}}
10 </dd>{{/description}} 11 </dd>{{/description}}
11 {{?properties}} 12 {{?properties}}
12 <h4 id="{{property.name}}-properties"> 13 <h4 id="{{name}}-properties">
13 Properties of <a href="#property-{{property.name}}">{{property.name}}</a> 14 Properties of <a href="#property-{{name}}">{{name}}</a>
14 </h4> 15 </h4>
15 <dd><dl>{{#properties}} 16 <dd><dl>{{#p:properties}}
16 {{+partials.parameter_full}} 17 {{+partials.parameter_full parameter:p parentName:false/}}
17 {{/}}</dl></dd> 18 {{/properties}}</dl></dd>
18 {{/properties}} 19 {{/properties}}
19 {{?functions}} 20 {{?functions}}
20 <h4 id="{{property.name}}-functions"> 21 <h4 id="{{name}}-functions">
21 Methods of <a href="#property-{{property.name}}">{{property.name}}</a> 22 Methods of <a href="#property-{{name}}">{{name}}</a>
22 </h4> 23 </h4>
23 <dd><dl>{{#functions}} 24 <dd><dl>{{#f:functions}}
24 {{+partials.function @:@}} 25 {{+partials.function function:f parentName:false/}}
25 {{/}}</dl></dd> 26 {{/}}</dl></dd>
26 {{/functions}} 27 {{/functions}}
27 </div> 28 </div>
28 </div> 29 </div>
30 {{/property}}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698