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

Unified 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 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 0acf0634128edbdc68d60e1b20e09bbbc6869323..918d9ff7320dd8ada82779f6d63f19d9037c6148 100644
--- a/chrome/common/extensions/docs/templates/private/api_property.html
+++ b/chrome/common/extensions/docs/templates/private/api_property.html
@@ -1,28 +1,30 @@
+{{#property}}
<div>
<h3 id="{{id}}">{{name}}</h3>
<div class="summary">
- <div class="line">{{+partials.api_namespace api:api}}{{name}}</div>
+ <div class="line">{{+partials.api_namespace api:api/}}{{name}}</div>
</div>
<div>
- <dt><span class="property">{{name}}</span> {{+partials.type_name link:link @:property}}</dt>
+ <dt><span class="property">{{name}}</span> {{+partials.type_name link:link type:property/}}</dt>
{{?description}}<dd>
{{{description}}}
</dd>{{/description}}
{{?properties}}
- <h4 id="{{property.name}}-properties">
- Properties of <a href="#property-{{property.name}}">{{property.name}}</a>
+ <h4 id="{{name}}-properties">
+ Properties of <a href="#property-{{name}}">{{name}}</a>
</h4>
- <dd><dl>{{#properties}}
- {{+partials.parameter_full}}
- {{/}}</dl></dd>
+ <dd><dl>{{#p:properties}}
+ {{+partials.parameter_full parameter:p parentName:false/}}
+ {{/properties}}</dl></dd>
{{/properties}}
{{?functions}}
- <h4 id="{{property.name}}-functions">
- Methods of <a href="#property-{{property.name}}">{{property.name}}</a>
+ <h4 id="{{name}}-functions">
+ Methods of <a href="#property-{{name}}">{{name}}</a>
</h4>
- <dd><dl>{{#functions}}
- {{+partials.function @:@}}
+ <dd><dl>{{#f:functions}}
+ {{+partials.function function:f parentName:false/}}
{{/}}</dl></dd>
{{/functions}}
</div>
</div>
+{{/property}}

Powered by Google App Engine
This is Rietveld 408576698