aboutsummaryrefslogtreecommitdiff
path: root/src/content/index.js
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-10-08 07:41:55 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2017-10-08 07:41:55 +0900
commitea455059bd0af542f3e8c723fc7774e74b8abffe (patch)
tree66083a75e756a9593954a93e2fa3d2b6002986be /src/content/index.js
parent30641f1b75a2a21b3bc3b3605bae634be7e809c9 (diff)
prevent keymaps in the page
Diffstat (limited to 'src/content/index.js')
-rw-r--r--src/content/index.js3
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();