about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/reducers/dropdown_menu.js
diff options
context:
space:
mode:
authorThibaut Girka <thib@sitedethib.com>2018-09-11 22:35:17 +0200
committerThibG <thib@sitedethib.com>2018-09-13 20:32:08 +0200
commit5ff733b614fee51eebbc5f3f8aa2b96339181235 (patch)
tree638fcb5a0032c0c1b1428e6cc38b975308290a96 /app/javascript/flavours/glitch/reducers/dropdown_menu.js
parentcf142e85569be5e7e0dae7e02f490c737a238319 (diff)
Only focus first item of dropdown if it was opened via keyboard
Diffstat (limited to 'app/javascript/flavours/glitch/reducers/dropdown_menu.js')
-rw-r--r--app/javascript/flavours/glitch/reducers/dropdown_menu.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/javascript/flavours/glitch/reducers/dropdown_menu.js b/app/javascript/flavours/glitch/reducers/dropdown_menu.js
index 5449884cc..36fd4f132 100644
--- a/app/javascript/flavours/glitch/reducers/dropdown_menu.js
+++ b/app/javascript/flavours/glitch/reducers/dropdown_menu.js
@@ -4,12 +4,12 @@ import {
   DROPDOWN_MENU_CLOSE,
 } from '../actions/dropdown_menu';
 
-const initialState = Immutable.Map({ openId: null, placement: null });
+const initialState = Immutable.Map({ openId: null, placement: null, keyboard: false });
 
 export default function dropdownMenu(state = initialState, action) {
   switch (action.type) {
   case DROPDOWN_MENU_OPEN:
-    return state.merge({ openId: action.id, placement: action.placement });
+    return state.merge({ openId: action.id, placement: action.placement, keyboard: action.keyboard });
   case DROPDOWN_MENU_CLOSE:
     return state.get('openId') === action.id ? state.set('openId', null) : state;
   default: