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

Side by Side Diff: chrome/common/extensions/docs/server2/templates/private/table_of_contents.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 <div id="toc"> 1 <div id="toc">
2 <h2>Contents</h2> 2 <h2>Contents</h2>
3 <ol> 3 <ol>
4 <li> 4 <li>
5 <a href="#apiReference">API reference: chrome.{{api.name}}</a> 5 <a href="#apiReference">API reference: chrome.{{api.name}}</a>
6 <ol> 6 <ol>
7 {{?api.functions}} 7 {{?api}}
not at google - send to devlin 2012/07/09 11:01:20 When is there not an API? We're rending other api
cduvall 2012/07/09 17:50:40 I just did it so things inside the api could be ac
not at google - send to devlin 2012/07/09 23:05:34 Yep, thanks.
8 <li> 8 {{+partials.toc_properties}}
9 <a href="#methods">Methods</a> 9 {{+partials.toc_functions}}
10 <ol> 10 {{+partials.toc_events}}
11 {{#api.functions}} 11 {{+partials.toc_types}}
12 <li><a href="#method-{{name}}">{{name}}</a></li> 12 {{/api}}
13 {{/}}
14 </ol>
15 </li>
16 {{/api.functions}}
17 {{?api.events}}
18 <li>
19 <a href="#events">Events</a>
20 <ol>
21 {{#api.events}}
22 <li><a href="#event-{{name}}">{{name}}</a></li>
23 {{/}}
24 </ol>
25 </li>
26 {{/api.events}}
27 {{?api.types}}
28 <li>
29 <a href="#types">Types</a>
30 <ol>
31 {{#api.types}}
32 <li><a href="#type-{{name}}">{{name}}</a></li>
33 {{/}}
34 </ol>
35 </li>
36 {{/api.types}}
37 </ol> 13 </ol>
38 </li> 14 </li>
39 </ol> 15 </ol>
40 </div> 16 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698