1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-12-14 06:38:30 +09:00
whippy-edition/app/javascript/mastodon/actions/dropdown_menu.js

11 lines
330 B
JavaScript
Raw Normal View History

export const DROPDOWN_MENU_OPEN = 'DROPDOWN_MENU_OPEN';
export const DROPDOWN_MENU_CLOSE = 'DROPDOWN_MENU_CLOSE';
export function openDropdownMenu(id, keyboard, scroll_key) {
return { type: DROPDOWN_MENU_OPEN, id, keyboard, scroll_key };
}
export function closeDropdownMenu(id) {
return { type: DROPDOWN_MENU_CLOSE, id };
}