OLD | NEW |
| (Empty) |
1 <!DOCTYPE HTML> | |
2 <!-- | |
3 -- Copyright 2013 The Chromium Authors. All rights reserved. | |
4 -- Use of this source code is governed by a BSD-style license that can be | |
5 -- found in the LICENSE file. | |
6 --> | |
7 | |
8 <!-- | |
9 -- To avoid unintentionally break webui keyboard when changing extension | |
10 -- keyboard, creates this file and uses it as index.html for webui keyboard. | |
11 -- TODO(bshe): remove this file when dynamic layout loading is fixed | |
12 -- (http://www.crbug.com/260278). | |
13 --> | |
14 | |
15 <html> | |
16 <head> | |
17 <meta charset="UTF-8"> | |
18 <meta name="viewport" content="width=device-width, initial-scale=1, maximum-
scale=1, minimum-scale=1, user-scalable=no"> | |
19 <link rel="stylesheet" href="main.css"> | |
20 <script src="constants.js"></script> | |
21 <script src="polymer_loader.js"></script> | |
22 <script src="api_adapter.js"></script> | |
23 <script src="voice_input.js"></script> | |
24 <link rel="import" href="elements/kb-altkey.html"> | |
25 <link rel="import" href="elements/kb-altkey-container.html"> | |
26 <link rel="import" href="elements/kb-altkey-data.html"> | |
27 <link rel="import" href="elements/kb-altkey-set.html"> | |
28 <link rel="import" href="elements/kb-key-codes.html"> | |
29 <link rel="import" href="elements/kb-key-base.html"> | |
30 <link rel="import" href="elements/kb-key.html"> | |
31 <link rel="import" href="elements/kb-keyboard.html"> | |
32 <link rel="import" href="elements/kb-keyset.html"> | |
33 <link rel="import" href="elements/kb-row.html"> | |
34 <link rel="import" href="elements/kb-shift-key.html"> | |
35 <link id="numeric" rel="import" href="layouts/numeric.html"> | |
36 <link id="qwerty" rel="import" href="layouts/qwerty.html"> | |
37 <!--TODO(stevet): Import 'Open Sans' font. --> | |
38 <script src="main.js"></script> | |
39 <script src="layouts/latin-accents.js"></script> | |
40 </head> | |
41 <body> | |
42 <kb-keyboard id="keyboard" touch-action="none" layout="qwerty"> | |
43 </kb-keyboard> | |
44 </body> | |
45 </html> | |
OLD | NEW |