aboutsummaryrefslogtreecommitdiff
path: root/src/content/reducers
diff options
context:
space:
mode:
authorErwan Ameil <wan@idlewan.com>2017-11-16 13:03:38 +0000
committerErwan Ameil <wan@idlewan.com>2017-11-16 13:03:38 +0000
commit177940981ed9c4f096ad7db20f0b7ee044fd7b17 (patch)
treeee187b6b621a356f894971c2ee18169cac28a40f /src/content/reducers
parenta50c7dd0a20cbef8860c3592ae70d3813d94b78d (diff)
Open adjacent tabs and background tabs
Diffstat (limited to 'src/content/reducers')
-rw-r--r--src/content/reducers/follow-controller.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/content/reducers/follow-controller.js b/src/content/reducers/follow-controller.js
index 2afb232..78fd848 100644
--- a/src/content/reducers/follow-controller.js
+++ b/src/content/reducers/follow-controller.js
@@ -3,6 +3,7 @@ import actions from 'content/actions';
const defaultState = {
enabled: false,
newTab: false,
+ background: false,
keys: '',
};
@@ -12,6 +13,7 @@ export default function reducer(state = defaultState, action = {}) {
return Object.assign({}, state, {
enabled: true,
newTab: action.newTab,
+ background: action.background,
keys: '',
});
case actions.FOLLOW_CONTROLLER_DISABLE: