aboutsummaryrefslogtreecommitdiff
path: root/src/shared
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-08-20 21:19:42 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2017-08-20 21:19:42 +0900
commit355da18d3d6232620ebd7548f8d41b6f1af5aa08 (patch)
tree7887a63b5f521ea20ac99b6698c1d171e02a1335 /src/shared
parent99c1b831330462442e4c41553c29887ecdd96583 (diff)
add follow fot a tags
Diffstat (limited to 'src/shared')
-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) => {