diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-09-30 16:20:16 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-09-30 16:20:16 +0900 |
commit | 1145eb34784c1450b920f8e7d672934ef6a98d45 (patch) | |
tree | f076a7f2366af89177f2bbc45a6cf8866407f3d5 /src/content | |
parent | c2a5a41cb6bc7780db580e6325e25b6a81729851 (diff) | |
parent | c5efeda78cdf39e3eda1eabc5f89b601b1fcdb6e (diff) |
Merge branch 'configurable-keymap'
Diffstat (limited to 'src/content')
-rw-r--r-- | src/content/index.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/content/index.js b/src/content/index.js index 80acd2d..812fbc5 100644 --- a/src/content/index.js +++ b/src/content/index.js @@ -85,9 +85,9 @@ const execOperation = (operation) => { return scrolls.scrollTop(window); case operations.SCROLL_BOTTOM: return scrolls.scrollBottom(window); - case operations.SCROLL_LEFT: + case operations.SCROLL_HOME: return scrolls.scrollLeft(window); - case operations.SCROLL_RIGHT: + case operations.SCROLL_END: return scrolls.scrollRight(window); case operations.FOLLOW_START: return startFollows(operation.newTab); |