diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-10-08 07:41:55 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-10-08 07:41:55 +0900 |
commit | ea455059bd0af542f3e8c723fc7774e74b8abffe (patch) | |
tree | 66083a75e756a9593954a93e2fa3d2b6002986be /src/content/index.js | |
parent | 30641f1b75a2a21b3bc3b3605bae634be7e809c9 (diff) |
prevent keymaps in the page
Diffstat (limited to 'src/content/index.js')
-rw-r--r-- | src/content/index.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/content/index.js b/src/content/index.js index a2e3e3d..2c13c70 100644 --- a/src/content/index.js +++ b/src/content/index.js @@ -9,7 +9,8 @@ import messages from './messages'; const store = createStore(reducers); const followComponent = new FollowComponent(window.document.body, store); -const contentInputComponent = new ContentInputComponent(window, store); +const contentInputComponent = + new ContentInputComponent(window.document.body, store); store.subscribe(() => { try { followComponent.update(); |