diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-03-04 17:57:56 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-03-04 17:57:56 +0900 |
commit | 37410b874f89de4907ba038244318129835e8157 (patch) | |
tree | f9f3c8e0efc1fcd7117b2b681145464a3585781a /src/console/reducers | |
parent | 0211d7781fffdb0f4e9a5e523f0f6ea24c5c8db8 (diff) |
add hide action for console
Diffstat (limited to 'src/console/reducers')
-rw-r--r-- | src/console/reducers/index.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/console/reducers/index.js b/src/console/reducers/index.js index 60c0007..2aec55c 100644 --- a/src/console/reducers/index.js +++ b/src/console/reducers/index.js @@ -53,6 +53,10 @@ const nextConsoleText = (completions, group, item, defaults) => { export default function reducer(state = defaultState, action = {}) { switch (action.type) { + case actions.CONSOLE_HIDE: + return Object.assign({}, state, { + mode: '', + }); case actions.CONSOLE_SHOW_COMMAND: return Object.assign({}, state, { mode: 'command', |