From f8160b68b38306c4adb4e8a0b7e30b185a69c3d4 Mon Sep 17 00:00:00 2001 From: ThibG Date: Thu, 13 Sep 2018 20:31:33 +0200 Subject: 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 --- app/javascript/mastodon/reducers/dropdown_menu.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/javascript/mastodon/reducers/dropdown_menu.js') 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: -- cgit