This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2018-03-30 03:45:23 -07:00
|
|
|
export const DROPDOWN_MENU_OPEN = 'DROPDOWN_MENU_OPEN';
|
|
|
|
export const DROPDOWN_MENU_CLOSE = 'DROPDOWN_MENU_CLOSE';
|
|
|
|
|
2023-01-11 12:58:46 -08:00
|
|
|
export function openDropdownMenu(id, keyboard, scroll_key) {
|
|
|
|
return { type: DROPDOWN_MENU_OPEN, id, keyboard, scroll_key };
|
2018-03-30 03:45:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export function closeDropdownMenu(id) {
|
|
|
|
return { type: DROPDOWN_MENU_CLOSE, id };
|
|
|
|
}
|