OLD | NEW |
1 <div id="toc"> | 1 <div id="toc"> |
2 <h2>Contents</h2> | 2 <h2>Contents</h2> |
3 <ol> | 3 <ol> |
4 <li> | 4 <li> |
5 <a href="#apiReference">API reference: chrome.{{api.name}}</a> | 5 <a href="#apiReference">API reference: chrome.{{api.name}}</a> |
6 <ol> | 6 <ol> |
7 {{?api.functions}} | 7 {{#api}} |
8 <li> | 8 {{?api.properties}}<li>{{+partials.toc_properties}}</li>{{/}} |
9 <a href="#methods">Methods</a> | 9 {{?api.functions}}<li>{{+partials.toc_functions}}</li>{{/}} |
10 <ol> | 10 {{?api.events}}<li>{{+partials.toc_events}}</li>{{/}} |
11 {{#api.functions}} | 11 {{?api.types}}<li>{{+partials.toc_types}}</li>{{/}} |
12 <li><a href="#method-{{name}}">{{name}}</a></li> | 12 {{/api}} |
13 {{/}} | |
14 </ol> | |
15 </li> | |
16 {{/api.functions}} | |
17 {{?api.events}} | |
18 <li> | |
19 <a href="#events">Events</a> | |
20 <ol> | |
21 {{#api.events}} | |
22 <li><a href="#event-{{name}}">{{name}}</a></li> | |
23 {{/}} | |
24 </ol> | |
25 </li> | |
26 {{/api.events}} | |
27 {{?api.types}} | |
28 <li> | |
29 <a href="#types">Types</a> | |
30 <ol> | |
31 {{#api.types}} | |
32 <li><a href="#type-{{name}}">{{name}}</a></li> | |
33 {{/}} | |
34 </ol> | |
35 </li> | |
36 {{/api.types}} | |
37 </ol> | 13 </ol> |
38 </li> | 14 </li> |
39 </ol> | 15 </ol> |
40 </div> | 16 </div> |
OLD | NEW |