Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <section id="toc"> | |
|
not at google - send to devlin
2014/01/03 23:30:24
unless you hide the TOC for the main page (which..
Renato Mangini (chromium)
2014/02/06 03:19:17
I'm not sure if I follow you. This IS the TOC for
| |
| 2 <h2>Summary</h2> | |
| 3 <table class="apisummary"> | |
| 4 <tr> | |
| 5 {{?api.types}} | |
| 6 <tr><th colspan="2">Types</th></tr> | |
| 7 {{#t:api.types}} | |
| 8 <tr><td><a href="#{{t.id}}">{{t.name}}</a></td></tr> | |
| 9 {{/}} | |
| 10 {{/api.types}} | |
| 11 {{?api.properties}} | |
| 12 <tr><th colspan="2">Properties</th></tr> | |
| 13 {{#p:api.properties}} | |
| 14 <tr><td><a href="#{{p.id}}">{{p.name}}</a></td> | |
| 15 {{/}} | |
| 16 {{/api.properties}} | |
| 17 {{?api.functions}} | |
| 18 <tr><th colspan="2">Methods</th></tr> | |
| 19 {{#f:api.functions}} | |
| 20 <tr><td><a href="#{{f.id}}"> | |
| 21 {{+partials.function_signature function:f api:api no_link:f.id/}} | |
| 22 </a></td></tr> | |
| 23 {{/}} | |
| 24 {{/api.functions}} | |
| 25 {{?api.events}} | |
| 26 <tr><th colspan="2">Events</th></tr> | |
| 27 {{#e:api.events}} | |
| 28 <tr><td><a href="#{{e.id}}">{{e.name}}</a></td></tr> | |
| 29 {{/}} | |
| 30 {{/api.events}} | |
| 31 {{?api.domEvents}} | |
| 32 <tr><th colspan="2">DOM Events</th></tr> | |
| 33 {{#e:api.domEvents}} | |
| 34 <tr><td><a href="#{{e.id}}">{{e.name}}</a></td></tr> | |
| 35 {{/api.domEvents}} | |
| 36 {{/api.domEvents}} | |
| 37 </table> | |
| 38 </section> | |
| OLD | NEW |