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

Unified Diff: chrome/common/extensions/docs/templates/private/toc_types.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/toc_types.html
diff --git a/chrome/common/extensions/docs/templates/private/toc_types.html b/chrome/common/extensions/docs/templates/private/toc_types.html
index 1bfdd2b745366530291694df003a15ad8dc4c7b4..99a5add197b9cfac66339da2216340d84c82bc1a 100644
--- a/chrome/common/extensions/docs/templates/private/toc_types.html
+++ b/chrome/common/extensions/docs/templates/private/toc_types.html
@@ -1,14 +1,15 @@
+{{!types Types in the TOC}}
<a href="#{{?parentName}}{{parentName}}-{{/}}types">Types</a>
<ol>
- {{#types}}
+ {{#t:types}}
<li>
- <a href="#{{id}}">{{name}}</a>
- {{?functions}}<ol><li>
- {{+partials.toc_functions parentName:name functions:functions}}
- </li></ol>{{/}}
- {{?events}}<ol><li>
- {{+partials.toc_events parentName:name events:events}}
+ <a href="#{{t.id}}">{{t.name}}</a>
+ {{?t.functions}}<ol><li>
+ {{+partials.toc_functions parentName:t.name functions:t.functions/}}
</li></ol>{{/}}
+ {{?t.events}}<ol><li>
+ {{+partials.toc_events parentName:t.name events:t.events/}}
+ </li></ol>{{/t.events}}
</li>
- {{/}}
+ {{/types}}
</ol>

Powered by Google App Engine
This is Rietveld 408576698