diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-08-27 10:21:07 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-08-27 10:21:07 +0900 |
commit | 20e66ea2c7aa68dd5ffdb1af939e04d799969d90 (patch) | |
tree | bb1a2e8200cd8bb7cbd8e0a0dfa0a9268b167398 /src/shared | |
parent | 02c0cfd97d44c8568dee6f0d11d2e45732309c67 (diff) |
scroll by pages
Diffstat (limited to 'src/shared')
-rw-r--r-- | src/shared/actions.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/shared/actions.js b/src/shared/actions.js index 379a236..b987026 100644 --- a/src/shared/actions.js +++ b/src/shared/actions.js @@ -6,6 +6,7 @@ export const TABS_PREV = 'tabs.prev'; export const TABS_NEXT = 'tabs.next'; export const TABS_RELOAD = 'tabs.reload'; export const SCROLL_LINES = 'scroll.lines'; +export const SCROLL_PAGES = 'scroll.pages'; export const SCROLL_TOP = 'scroll.top'; export const SCROLL_BOTTOM = 'scroll.bottom'; export const FOLLOW_START = 'follow.start'; @@ -30,6 +31,7 @@ const CONTENT_ACTION_SET = new Set([ CMD_OPEN, CMD_TABS_OPEN, SCROLL_LINES, + SCROLL_PAGES, SCROLL_TOP, SCROLL_BOTTOM, FOLLOW_START, |