OLD | NEW |
---|---|
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 {{+partials.header_head}} | 4 {{+partials.header_head}} |
5 <link href="{{static}}/css/api.css" rel="stylesheet" type="text/css"> | 5 <link href="{{static}}/css/api.css" rel="stylesheet" type="text/css"> |
6 {{+partials.title}} | 6 {{+partials.title}} |
7 </head> | 7 </head> |
8 <body> | 8 <body> |
9 {{+partials.header_body}} | 9 {{+partials.header_body}} |
10 <div id="gc-container"> | 10 <div id="gc-container"> |
11 {{+partials.sidenav}} | 11 {{+partials.sidenav}} |
12 <div id="gc-pagecontent"> | 12 <div id="gc-pagecontent"> |
13 <h1 class="page_title">chrome.{{api.name}}</h1> | 13 <h1 class="page_title">chrome.{{api.name}}</h1> |
14 {{+partials.table_of_contents toc:intro.toc}} | 14 {{+partials.table_of_contents toc:intro.toc}} |
15 {{?api.permissions.dev}} | |
not at google - send to devlin
2012/07/30 19:24:33
should probably go above the table of contents, si
cduvall
2012/07/30 19:37:37
Done.
| |
16 <p class="warning"> | |
17 <!-- Standard content lead-in for APIs that are not yet available on | |
18 the stable channel. --> | |
not at google - send to devlin
2012/07/30 19:24:33
comment seems unnecessary
cduvall
2012/07/30 19:37:37
Done.
| |
19 <em>Warning:</em> This API is still under development. It is only | |
20 available for Chrome users on the | |
21 <span> | |
22 <strong>dev</strong> | |
23 <a href="http://www.chromium.org/getting-involved/dev-channel">ear ly | |
24 release channel</a>.</span> | |
25 <a href="TODO">Learn more</a>. | |
not at google - send to devlin
2012/07/30 19:24:33
strange TODO. I'd delete.
cduvall
2012/07/30 19:37:37
Done.
| |
26 </p> | |
27 {{/api.permissions.dev}} | |
15 {{- This is unindented because it contains <pre> tags -}} | 28 {{- This is unindented because it contains <pre> tags -}} |
16 {{+intro.intro}} | 29 {{+intro.intro}} |
17 {{+partials.api_reference}} | 30 {{+partials.api_reference}} |
18 </div> | 31 </div> |
19 </div> | 32 </div> |
20 </body> | 33 </body> |
21 {{+partials.footer}} | 34 {{+partials.footer}} |
22 </html> | 35 </html> |
OLD | NEW |