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

Unified Diff: chrome/common/extensions/docs/templates/private/event.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/event.html
diff --git a/chrome/common/extensions/docs/templates/private/event.html b/chrome/common/extensions/docs/templates/private/event.html
index 28ef58bf391da396505647b0027f769f6741cff0..db0b114d5b7085efe558be3d31b09fb9e130aa9a 100644
--- a/chrome/common/extensions/docs/templates/private/event.html
+++ b/chrome/common/extensions/docs/templates/private/event.html
@@ -1,6 +1,7 @@
+{{#event}}
<div>
<h4 id="{{id}}">{{name}}</h4>
- {{+partials.warning_deprecated item:@}}
+ {{+partials.warning_deprecated item:event/}}
<div class="description">
{{?description}}<p>
{{{description}}}
@@ -13,38 +14,39 @@
<div class="summary">
{{+partials.function_signature function:byName.addRules
parentName:name
- api:api}}
+ api:api/}}
{{+partials.function_signature function:byName.removeRules
parentName:name
- api:api}}
+ api:api/}}
{{+partials.function_signature function:byName.getRules
parentName:name
- api:api}}
+ api:api/}}
</div>
{{?conditions}}
<h4>Supported conditions</h4>
<ul>
- {{#conditions}}<div><li>{{+partials.ref_link}}</li></div>{{/}}
+ {{#c:conditions}}<div><li>{{+partials.ref_link link:c/}}</li></div>{{/}}
</ul>
{{/conditions}}
{{?actions}}
<h4>Supported actions</h4>
<ul>
- {{#actions}}<div><li>{{+partials.ref_link}}</li></div>{{/}}
+ {{#a:actions}}<div><li>{{+partials.ref_link link:a/}}</li></div>{{/}}
</ul>
{{/actions}}
{{/supportsRules}}
{{?filters}}
<h4>Filters</h4>
<dl>
- {{#filters}}{{+partials.parameter_full}}{{/}}
+ {{#f:filters +partials.parameter_full parameter:f/}}
</dl>
{{/filters}}
{{?supportsListeners}}
- {{+partials.function @:byName.addListener
+ {{+partials.function function:byName.addListener
parentName:name
api:api
- parentId:id}}
+ parentId:id/}}
{{/supportsListeners}}
</div>
</div>
+{{/event}}

Powered by Google App Engine
This is Rietveld 408576698