diff options
author | Shinya Ohyanagi <heavenshell.jp@gmail.com> | 2017-11-18 13:53:33 +0900 |
---|---|---|
committer | Shinya Ohyanagi <heavenshell.jp@gmail.com> | 2017-11-18 13:53:33 +0900 |
commit | 5d0554c7e8be7d2e96a76927b46a37c82e0eb011 (patch) | |
tree | 810c6bc413ffac05500bb960d163551b44375c54 /src/console/components/console.js | |
parent | b70a671d7e7c8b801f8a05210c71f7c9a8e48828 (diff) |
Fix drop arrow keys from console
Diffstat (limited to 'src/console/components/console.js')
-rw-r--r-- | src/console/components/console.js | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/console/components/console.js b/src/console/components/console.js index 21439ef..7c23dab 100644 --- a/src/console/components/console.js +++ b/src/console/components/console.js @@ -74,17 +74,11 @@ export default class ConsoleComponent { return this.doEnter(e); } break; - case KeyboardEvent.DOM_VK_DOWN: - this.selectNext(e); - break; case KeyboardEvent.DOM_VK_N: if (e.ctrlKey) { this.selectNext(e); } break; - case KeyboardEvent.DOM_VK_UP: - this.selectPrev(e); - break; case KeyboardEvent.DOM_VK_P: if (e.ctrlKey) { this.selectPrev(e); |