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

Unified Diff: chrome/common/extensions/docs/templates/private/parameter_full.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/parameter_full.html
diff --git a/chrome/common/extensions/docs/templates/private/parameter_full.html b/chrome/common/extensions/docs/templates/private/parameter_full.html
index 7d8baffea3b272ad3311bb6fa0286bf1203b9a3b..3ddab1593165c60323361e9b218564f87919fb6c 100644
--- a/chrome/common/extensions/docs/templates/private/parameter_full.html
+++ b/chrome/common/extensions/docs/templates/private/parameter_full.html
@@ -1,15 +1,14 @@
+{{#parameter}}
<div>
{{?parentName}}<a name="{{id}}"></a>{{/}}
<dl>
- {{+partials.property @:@ property:@}}
+ {{+partials.property property:parameter/}}
</dl>
{{?properties}}
<dd>
<h5>Properties of <span class="variable">{{name}}</span></h5>
<dl>
- {{#properties}}
- {{+partials.parameter_full}}
- {{/properties}}
+ {{#p:properties +partials.parameter_full parameter:p/}}
</dl>
</dd>
{{/properties}}
@@ -17,20 +16,19 @@
<dd>
<dl>
<h5>Parameters</h5>
- {{#parameters}}
- {{+partials.parameter_full}}
- {{/}}
+ {{#p:parameters +partials.parameter_full parameter:p/}}
</dl>
- {{?callback}}{{+partials.callback}}{{/}}
+ {{?callback +partials.callback callback:callback/}}
</dd>
{{/parameters}}
{{?returns}}
<dd>
<dl>
<dt>Returns<span class="property">
- {{+partials.variable_type}}
+ {{+partials.variable_type type:returns/}}
</span></dt>
</dl>
</dd>
{{/returns}}
</div>
+{{/parameter}}

Powered by Google App Engine
This is Rietveld 408576698