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

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

Issue 121713002: Rework API reference pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@addscss_330235
Patch Set: Rebase Created 6 years, 10 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
OLDNEW
(Empty)
1 <section id="toc">
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698