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

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: Storage API looking good 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.properties}}
5 <h3 id="properties">Properties</h3>
6 {{#api.properties}}
7 {{+partials.api_property api:api}}
8 {{/}}
9 {{/api.properties}}
4 {{?api.functions}} 10 {{?api.functions}}
5 <h3 id="methods">Methods</h3> 11 <h3 id="methods">Methods</h3>
6 {{#api.functions}} 12 {{#api.functions}}
7 {{+partials.function api:api}} 13 {{+partials.function api:api}}
8 {{/}} 14 {{/}}
9 {{/api.functions}} 15 {{/api.functions}}
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 type:@}}
20 {{/}} 26 {{/}}
21 {{/api.types}} 27 {{/api.types}}
22 </div> 28 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698