aboutsummaryrefslogtreecommitdiff
path: root/src/shared/actions.js
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-08-22 22:00:42 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2017-08-22 22:00:42 +0900
commitab5fd9a336166cab75ff00e65afb4be991ff0765 (patch)
treef2e933c927baf64cc393ea1a83ed57cc1fcc9bb2 /src/shared/actions.js
parent13fb726332e9638cb3fafc477cf9fe641cb906ce (diff)
parentdcebe336281d068649927a8bb8d3c0403807ef01 (diff)
Merge branch 'follow-hints'
Diffstat (limited to 'src/shared/actions.js')
-rw-r--r--src/shared/actions.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/shared/actions.js b/src/shared/actions.js
index be25d72..bb61dbc 100644
--- a/src/shared/actions.js
+++ b/src/shared/actions.js
@@ -8,6 +8,7 @@ export const SCROLL_UP = 'scroll.up';
export const SCROLL_DOWN = 'scroll.down';
export const SCROLL_TOP = 'scroll.top';
export const SCROLL_BOTTOM = 'scroll.bottom';
+export const FOLLOW_START = 'follow.start';
const BACKGROUND_ACTION_SET = new Set([
TABS_CLOSE,
@@ -22,7 +23,8 @@ const CONTENT_ACTION_SET = new Set([
SCROLL_UP,
SCROLL_DOWN,
SCROLL_TOP,
- SCROLL_BOTTOM
+ SCROLL_BOTTOM,
+ FOLLOW_START
]);
export const isBackgroundAction = (action) => {