| Index: ui/keyboard/resources/main.js
|
| diff --git a/ui/keyboard/resources/main.js b/ui/keyboard/resources/main.js
|
| index c837aed2ad95aa7d9054c7c6fa15003843adc491..76306b00cc5ae1a952211e9570313aa0f9590533 100644
|
| --- a/ui/keyboard/resources/main.js
|
| +++ b/ui/keyboard/resources/main.js
|
| @@ -205,14 +205,9 @@
|
| * @return {Array.<String, number>} The bounds of the keyboard container.
|
| */
|
| function getKeyboardBounds_() {
|
| - var keyboard = $('keyboard');
|
| - var ratio = DEFAULT_KEYBOARD_ASPECT_RATIO;
|
| - if (keyboard.config && keyboard.config.a11ymode) {
|
| - ratio = DEFAULT_A11Y_KEYBOARD_ASPECT_RATIO;
|
| - }
|
| return {
|
| "width": screen.width,
|
| - "height": screen.height * ratio
|
| + "height": screen.height * DEFAULT_KEYBOARD_ASPECT_RATIO
|
| };
|
| }
|
|
|
|
|