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';
|
|
|
|
|
2018-09-11 13:35:17 -07:00
|
|
|
export function openDropdownMenu(id, placement, keyboard) {
|
|
|
|
return { type: DROPDOWN_MENU_OPEN, id, placement, keyboard };
|
2018-03-30 03:45:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export function closeDropdownMenu(id) {
|
|
|
|
return { type: DROPDOWN_MENU_CLOSE, id };
|
|
|
|
}
|