OLD | NEW |
---|---|
(Empty) | |
1 <section id="toc"> | |
2 <h2>Summary</h2> | |
3 <table class="api-summary"> | |
4 <tr> | |
5 {{?api.types}} | |
6 <tr><th colspan="2">Types</th></tr> | |
Jeffrey Yasskin
2014/02/07 02:40:03
This table only has one column.
| |
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> | |
Jeffrey Yasskin
2014/02/07 02:40:03
Why do we list just the basename of the properties
Jeffrey Yasskin
2014/02/07 02:40:03
This row is missing its </tr>. It's not required b
| |
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 disableLink: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 |