From eff8d9a83edf63bab09df4bd7f6e20e85fba3899 Mon Sep 17 00:00:00 2001 From: Shin'ya UEOKA Date: Tue, 3 Oct 2017 02:54:38 +0000 Subject: comtent input as compoents --- src/content/index.js | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) (limited to 'src/content') diff --git a/src/content/index.js b/src/content/index.js index 0dbc8c1..e5a2965 100644 --- a/src/content/index.js +++ b/src/content/index.js @@ -4,6 +4,7 @@ import * as scrolls from '../content/scrolls'; import * as navigates from '../content/navigates'; import * as followActions from '../actions/follow'; import * as store from '../store'; +import ContentInputComponent from '../components/content-input'; import FollowComponent from '../components/follow'; import followReducer from '../reducers/follow'; import operations from '../operations'; @@ -18,25 +19,10 @@ followStore.subscribe(() => { console.error(e); } }); +const contentInputComponent = new ContentInputComponent(window); consoleFrames.initialize(window.document); -window.addEventListener('keypress', (e) => { - if (e.target instanceof HTMLInputElement || - e.target instanceof HTMLTextAreaElement || - e.target instanceof HTMLSelectElement) { - if (e.key === 'Escape' && e.target.blur) { - e.target.blur(); - } - return; - } - browser.runtime.sendMessage({ - type: messages.KEYDOWN, - code: e.which, - ctrl: e.ctrlKey - }); -}); - const execOperation = (operation) => { switch (operation.type) { case operations.SCROLL_LINES: -- cgit v1.2.3