diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-08-15 20:47:52 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-08-15 20:47:52 +0900 |
commit | b9fe3343fc46fb9898f6da9cff8bf0e4ab4e982c (patch) | |
tree | af4dbef491bc25185808234cd1107f2bb05a7ab5 /src/background/index.js | |
parent | ae089cf5f16e5df40e4d14a9fe844ffc83bd6774 (diff) |
add key-queue test
Diffstat (limited to 'src/background/index.js')
-rw-r--r-- | src/background/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/background/index.js b/src/background/index.js index 604ea92..d27c557 100644 --- a/src/background/index.js +++ b/src/background/index.js @@ -2,7 +2,7 @@ import * as actions from '../shared/actions'; import * as tabs from './tabs'; import KeyQueue from './key-queue'; -const queue = new KeyQueue(); +const queue = new KeyQueue(KeyQueue.DEFAULT_KEYMAP); const keyDownHandle = (request) => { return queue.push({ |