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

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

Issue 10689117: Extensions Docs Server: Support APIs with properties (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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 <a name="apiReference"></a> 1 <a name="apiReference"></a>
2 <h2>API Reference: chrome.{{api.name}}</h2> 2 <h2>API Reference: chrome.{{api.name}}</h2>
3 <div class="api_reference"> 3 <div class="api_reference">
4 {{?api.functions}} 4 {{?api.functions}}
5 <h3 id="methods">Methods</h3> 5 <h3 id="methods">Methods</h3>
6 {{#api.functions}} 6 {{#api.functions}}
7 {{+partials.function api:api}} 7 {{+partials.function api:api}}
8 {{/}} 8 {{/}}
9 {{/api.functions}} 9 {{/api.functions}}
10 {{?api.properties}}
11 <h3 id="properties">Properties</h3>
12 {{#api.properties}}
13 {{+partials.api_property api:api}}
14 {{/}}
15 {{/api.properties}}
not at google - send to devlin 2012/07/06 02:14:30 Properties go at the top.
cduvall 2012/07/06 20:32:11 Done.
10 {{?api.events}} 16 {{?api.events}}
11 <h3 id="events">Events</h3> 17 <h3 id="events">Events</h3>
12 {{#api.events}} 18 {{#api.events}}
13 {{+partials.event api:api}} 19 {{+partials.event api:api}}
14 {{/}} 20 {{/}}
15 {{/api.events}} 21 {{/api.events}}
16 {{?api.types}} 22 {{?api.types}}
17 <h3 id="types">Types</h3> 23 <h3 id="types">Types</h3>
18 {{#api.types}} 24 {{#api.types}}
19 {{+partials.type api:api}} 25 {{+partials.type api:api}}
20 {{/}} 26 {{/}}
21 {{/api.types}} 27 {{/api.types}}
22 </div> 28 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698