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

Unified Diff: chrome/common/extensions/docs/templates/private/table_of_contents.html

Issue 14991011: Merge 200687 "Docserver: update third_party/handlebar. handlebar..." (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1453/src/
Patch Set: Created 7 years, 7 months 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/table_of_contents.html
===================================================================
--- chrome/common/extensions/docs/templates/private/table_of_contents.html (revision 200693)
+++ chrome/common/extensions/docs/templates/private/table_of_contents.html (working copy)
@@ -18,11 +18,31 @@
<a href="#apiReference">Reference</a>
<ol>
{{#api}}
- {{?api.types}}<li>{{+partials.toc_types}}</li>{{/}}
- {{?api.properties}}<li>{{+partials.toc_properties}}</li>{{/}}
- {{?api.functions}}<li>{{+partials.toc_functions}}</li>{{/}}
- {{?api.events}}<li>{{+partials.toc_events}}</li>{{/}}
- {{?samples_list}}<li>{{+partials.toc_samples title:title}}</li>{{/}}
+ {{?types}}
+ <li>
+ {{+partials.toc_types types:types}}
+ </li>
+ {{/types}}
+ {{?properties}}
+ <li>
+ {{+partials.toc_properties properties:properties}}
+ </li>
+ {{/properties}}
+ {{?functions}}
+ <li>
+ {{+partials.toc_functions functions:functions}}
+ </li>
+ {{/functions}}
+ {{?events}}
+ <li>
+ {{+partials.toc_events events:events}}
+ </li>
+ {{/events}}
+ {{?samples_list}}
+ <li>
+ {{+partials.toc_samples title:title}}
+ </li>
+ {{/samples_list}}
{{/api}}
</ol>
</li>

Powered by Google App Engine
This is Rietveld 408576698