aboutsummaryrefslogtreecommitdiff
path: root/src/content/actions
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-10-09 21:00:26 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2017-10-09 21:00:26 +0900
commit8c84930ca3ca673ca2b6afa8973b2de5f0dc9cb3 (patch)
tree8dd3ca297cb002d50228407b41496fc4dda201f4 /src/content/actions
parent36963b1b8b595e0c5959ec4a2683e869008acebd (diff)
scroll horizonally
Diffstat (limited to 'src/content/actions')
-rw-r--r--src/content/actions/operation.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/content/actions/operation.js b/src/content/actions/operation.js
index 0d5088b..1302404 100644
--- a/src/content/actions/operation.js
+++ b/src/content/actions/operation.js
@@ -8,8 +8,10 @@ import * as consoleFrames from 'content/console-frames';
const exec = (operation) => {
switch (operation.type) {
- case operations.SCROLL_LINES:
- return scrolls.scrollLines(window, operation.count);
+ case operations.SCROLL_VERTICALLY:
+ return scrolls.scrollVertically(window, operation.count);
+ case operations.SCROLL_HORIZONALLY:
+ return scrolls.scrollHorizonally(window, operation.count);
case operations.SCROLL_PAGES:
return scrolls.scrollPages(window, operation.count);
case operations.SCROLL_TOP: