about summary refs log tree commit diff
path: root/app/javascript/mastodon/reducers/dropdown_menu.js
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2018-09-13 20:31:33 +0200
committerEugen Rochko <eugen@zeonfederated.com>2018-09-13 20:31:33 +0200
commitf8160b68b38306c4adb4e8a0b7e30b185a69c3d4 (patch)
tree2397b527f9e8a38c81cfca5c98a3db9c142a1f31 /app/javascript/mastodon/reducers/dropdown_menu.js
parent09a87b2cdbc2c5b19152b732e39b5fdb4164fc7d (diff)
Only focus first element of dropdown menus if using keyboard (#8679)
* Only focus first item of dropdown if it was opened via keyboard

* Improve keyboard VS mouse navigation of dropdown menus
Diffstat (limited to 'app/javascript/mastodon/reducers/dropdown_menu.js')
-rw-r--r--app/javascript/mastodon/reducers/dropdown_menu.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/javascript/mastodon/reducers/dropdown_menu.js b/app/javascript/mastodon/reducers/dropdown_menu.js
index 5449884cc..36fd4f132 100644
--- a/app/javascript/mastodon/reducers/dropdown_menu.js
+++ b/app/javascript/mastodon/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: