diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-10-23 10:43:33 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-23 10:43:33 +0000 |
commit | ccc81312a1d4d9a5cea7d7451c26ec25b2172aa8 (patch) | |
tree | 96ae119fb5e7939547284f72fc12cd9cc6c717d5 /src/content/actions/input.js | |
parent | 7639e99b755e372712dca36e077a85d9a025cd9f (diff) | |
parent | b9f2668ceab3d786ce3e587803ff30ec5c781ee3 (diff) |
Merge pull request #90 from ueokande/11-url-blacklist
URL blacklist
Diffstat (limited to 'src/content/actions/input.js')
-rw-r--r-- | src/content/actions/input.js | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/src/content/actions/input.js b/src/content/actions/input.js index 31cfee3..465a486 100644 --- a/src/content/actions/input.js +++ b/src/content/actions/input.js @@ -13,11 +13,4 @@ const clearKeys = () => { }; }; -const setKeymaps = (keymaps) => { - return { - type: actions.INPUT_SET_KEYMAPS, - keymaps, - }; -}; - -export { keyPress, clearKeys, setKeymaps }; +export { keyPress, clearKeys }; |