OLD | NEW |
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
2 <!-- | 2 <!-- |
3 -- Copyright (c) 2013 The Chromium Authors. All rights reserved. | 3 -- Copyright (c) 2013 The Chromium Authors. All rights reserved. |
4 -- Use of this source code is governed by a BSD-style license that can be | 4 -- Use of this source code is governed by a BSD-style license that can be |
5 -- found in the LICENSE file. | 5 -- found in the LICENSE file. |
6 --> | 6 --> |
7 | 7 |
8 <html> | 8 <html> |
9 <head> | 9 <head> |
10 <meta charset="UTF-8"> | 10 <meta charset="UTF-8"> |
11 <link rel="stylesheet" href="main.css"> | 11 <link rel="stylesheet" href="main.css"> |
12 <script src="constants.js"></script> | 12 <script src="constants.js"></script> |
13 <script src="polymer.min.js"></script> | 13 <script src="polymer.min.js"></script> |
14 <script src="api_adapter.js"></script> | 14 <script src="api_adapter.js"></script> |
15 <script src="voice_input.js"></script> | 15 <script src="voice_input.js"></script> |
16 <link rel="import" href="elements/kb-key.html"> | 16 <link rel="import" href="elements/kb-key.html"> |
17 <link rel="import" href="elements/kb-row.html"> | 17 <link rel="import" href="elements/kb-row.html"> |
18 <link rel="import" href="elements/kb-keyset.html"> | 18 <link rel="import" href="elements/kb-keyset.html"> |
19 <link rel="import" href="elements/kb-keyboard.html"> | 19 <link rel="import" href="elements/kb-keyboard.html"> |
20 <link id="keysets" rel="import" href="keysets.html"> | 20 <link id="keysets" rel="import" href="keysets.html"> |
| 21 <!--TODO(stevet): Import 'Open Sans' font. --> |
21 <script src="main.js"></script> | 22 <script src="main.js"></script> |
22 </head> | 23 </head> |
23 <body> | 24 <body> |
24 <kb-keyboard id="keyboard" touch-action="none" keyset="lower"></kb-keyboard> | 25 <kb-keyboard id="keyboard" touch-action="none" keyset="lower"></kb-keyboard> |
25 </body> | 26 </body> |
26 </html> | 27 </html> |
OLD | NEW |