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

Unified Diff: chrome/common/extensions/docs/templates/private/enum_descriptions.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/enum_descriptions.html
diff --git a/chrome/common/extensions/docs/templates/private/enum_descriptions.html b/chrome/common/extensions/docs/templates/private/enum_descriptions.html
index 9bbe4f56d8eef3abb590aa66553aead21bafa03b..832ad4496a168066488a94083e77ebeb4e98eeb3 100644
--- a/chrome/common/extensions/docs/templates/private/enum_descriptions.html
+++ b/chrome/common/extensions/docs/templates/private/enum_descriptions.html
@@ -1,12 +1,12 @@
-{{?values}}
- {{#values}}
- {{?@.description}}
+{{?enums}}
+ {{#enum:enums}}
+ {{?enum.description}}
<dl>
- <dt>{{name}}</dt>
+ <dt>{{enum.name}}</dt>
<dd>
- {{{description}}}
+ {{{enum.description}}}
</dd>
</dl>
- {{/@.description}}
- {{/values}}
-{{/values}}
+ {{/enum.description}}
+ {{/enums}}
+{{/enums}}

Powered by Google App Engine
This is Rietveld 408576698