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

Side by Side Diff: chrome/common/extensions/docs/server2/templates/private/table_of_contents.html

Issue 10750017: Extensions Docs Server: Intro data source (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: nits Created 8 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <div id="toc"> 1 <div id="toc">
2 <h2>Contents</h2> 2 <h2>Contents</h2>
3 <ol> 3 <ol>
4 {{#toc}}
5 <li>
6 <a href=#{{link}}>{{title}}</a>
7 {{?subheadings}}
8 <ol>
9 {{#subheadings}}<li><a href=#{{link}}>{{title}}</a></li>{{/}}
10 </ol>
11 {{/}}
12 </li>
13 {{/toc}}
4 <li> 14 <li>
5 <a href="#apiReference">API reference: chrome.{{api.name}}</a> 15 <a href="#apiReference">API reference: chrome.{{api.name}}</a>
6 <ol> 16 <ol>
7 {{#api}} 17 {{#api}}
8 {{?api.properties}}<li>{{+partials.toc_properties}}</li>{{/}} 18 {{?api.properties}}<li>{{+partials.toc_properties}}</li>{{/}}
9 {{?api.functions}}<li>{{+partials.toc_functions}}</li>{{/}} 19 {{?api.functions}}<li>{{+partials.toc_functions}}</li>{{/}}
10 {{?api.events}}<li>{{+partials.toc_events}}</li>{{/}} 20 {{?api.events}}<li>{{+partials.toc_events}}</li>{{/}}
11 {{?api.types}}<li>{{+partials.toc_types}}</li>{{/}} 21 {{?api.types}}<li>{{+partials.toc_types}}</li>{{/}}
12 {{/api}} 22 {{/api}}
13 </ol> 23 </ol>
14 </li> 24 </li>
15 </ol> 25 </ol>
16 </div> 26 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698