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

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

Issue 10827063: Extensions Docs Server: Pull info from _permission_features.json (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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}} 4 {{#toc}}
5 <li> 5 <li>
6 <a href=#{{link}}>{{{title}}}</a> 6 <a href=#{{link}}>{{{title}}}</a>
7 {{?subheadings}} 7 {{?subheadings}}
8 <ol> 8 <ol>
9 {{#subheadings}}<li><a href=#{{link}}>{{{title}}}</a></li>{{/}} 9 {{#subheadings}}<li><a href=#{{link}}>{{{title}}}</a></li>{{/}}
10 </ol> 10 </ol>
11 {{/}} 11 {{/}}
12 </li> 12 </li>
13 {{/toc}} 13 {{/toc}}
14 {{?perms}}<li><a href=#perms>Permissions</a></li>{{/}}
14 {{?api}} 15 {{?api}}
15 <li> 16 <li>
16 <a href="#apiReference">API reference: chrome.{{api.name}}</a> 17 <a href="#apiReference">API reference: chrome.{{api.name}}</a>
17 <ol> 18 <ol>
18 {{#api}} 19 {{#api}}
19 {{?api.types}}<li>{{+partials.toc_types}}</li>{{/}} 20 {{?api.types}}<li>{{+partials.toc_types}}</li>{{/}}
20 {{?api.properties}}<li>{{+partials.toc_properties}}</li>{{/}} 21 {{?api.properties}}<li>{{+partials.toc_properties}}</li>{{/}}
21 {{?api.functions}}<li>{{+partials.toc_functions}}</li>{{/}} 22 {{?api.functions}}<li>{{+partials.toc_functions}}</li>{{/}}
22 {{?api.events}}<li>{{+partials.toc_events}}</li>{{/}} 23 {{?api.events}}<li>{{+partials.toc_events}}</li>{{/}}
23 {{/api}} 24 {{/api}}
24 </ol> 25 </ol>
25 </li> 26 </li>
26 {{/api}} 27 {{/api}}
27 </ol> 28 </ol>
28 </div> 29 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698