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

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

Issue 14693006: Docserver: update handlebar. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/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
diff --git a/chrome/common/extensions/docs/templates/private/table_of_contents.html b/chrome/common/extensions/docs/templates/private/table_of_contents.html
index 3303760af07f5c48cad9f5eaa25c81b3c2cfe70d..76a5d67508b57aaf7ffa239697be714e94a46988 100644
--- a/chrome/common/extensions/docs/templates/private/table_of_contents.html
+++ b/chrome/common/extensions/docs/templates/private/table_of_contents.html
@@ -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