OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE HTML> | |
Dan Beam
2014/12/09 05:33:38
nit: lowercase
Charlie
2014/12/17 23:39:55
Done. The example in the Chromium style guide is u
| |
2 <html i18n-values="dir:textdirection;"> | |
3 | |
4 <head> | |
5 <meta charset="utf-8"> | |
6 <title i18n-content="title"></title> | |
7 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> | |
8 <link rel="stylesheet" href="chrome://copresence/copresence.css"> | |
9 </head> | |
10 | |
11 <body> | |
12 <header> | |
13 <h1 i18n-content="title"></h1> | |
14 </header> | |
15 | |
16 <main> | |
17 <section> | |
18 <h2 i18n-content="directives_title"></h2> | |
19 <table class="directives" id="directives-table"> | |
20 <thead> | |
21 <tr> | |
22 <td i18n-content="directive_type"> | |
23 <td i18n-content="token_medium"> | |
24 <td i18n-content="duration"> | |
25 <td class="spacer"> | |
26 <tbody> | |
27 </table> | |
28 </section> | |
29 | |
30 <section> | |
31 <h2 i18n-content="sent_tokens_title"></h2> | |
32 <table class="tokens" id="sent-tokens-table"> | |
33 <thead> | |
34 <tr> | |
35 <td i18n-content="token_id"> | |
36 <td i18n-content="token_status"> | |
37 <td i18n-content="token_medium"> | |
38 <td i18n-content="token_send_time"> | |
39 <td class="spacer"> | |
40 <tbody> | |
41 </table> | |
42 </section> | |
43 | |
44 <section> | |
45 <h2 i18n-content="received_tokens_title"></h2> | |
46 <table class="tokens" id="received-tokens-table"> | |
47 <thead> | |
48 <tr> | |
49 <td i18n-content="token_id"> | |
50 <td i18n-content="token_status"> | |
51 <td i18n-content="token_medium"> | |
52 <td i18n-content="token_receive_time"> | |
53 <td class="spacer"> | |
54 <tbody> | |
55 </table> | |
56 </section> | |
57 | |
58 <!-- TODO(ckehoe): Add server calls. --> | |
59 | |
60 <!-- TODO(ckehoe): Add GCM pings. --> | |
61 | |
62 </main> | |
63 | |
64 </body> | |
65 | |
66 <script src="chrome://resources/js/load_time_data.js"></script> | |
67 <script src="chrome://resources/js/util.js"></script> | |
68 <script src="chrome://copresence/copresence.js"></script> | |
69 <script src="chrome://copresence/strings.js"></script> | |
70 <script src="chrome://resources/js/i18n_template2.js"></script> | |
Dan Beam
2014/12/09 05:33:38
nit: put just before </body>
Charlie
2014/12/17 23:39:55
Done.
| |
71 | |
72 </html> | |
OLD | NEW |