| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 <include src="keyboard_overlay_data.js"/> | 5 <include src="keyboard_overlay_data.js"/> |
| 6 <include src="keyboard_overlay_accessibility_helper.js"/> | 6 <include src="keyboard_overlay_accessibility_helper.js"/> |
| 7 | 7 |
| 8 var BASE_KEYBOARD = { | 8 var BASE_KEYBOARD = { |
| 9 top: 0, | 9 top: 0, |
| 10 left: 0, | 10 left: 0, |
| (...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 keyboardOverlayId = 'en_US'; | 467 keyboardOverlayId = 'en_US'; |
| 468 } | 468 } |
| 469 while(document.body.firstChild) { | 469 while(document.body.firstChild) { |
| 470 document.body.removeChild(document.body.firstChild); | 470 document.body.removeChild(document.body.firstChild); |
| 471 } | 471 } |
| 472 initLayout(); | 472 initLayout(); |
| 473 update([]); | 473 update([]); |
| 474 } | 474 } |
| 475 | 475 |
| 476 document.addEventListener('DOMContentLoaded', init); | 476 document.addEventListener('DOMContentLoaded', init); |
| OLD | NEW |