The code powering m.abunchtell.com https://m.abunchtell.com
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 

11 rindas
328 B

  1. export const DROPDOWN_MENU_OPEN = 'DROPDOWN_MENU_OPEN';
  2. export const DROPDOWN_MENU_CLOSE = 'DROPDOWN_MENU_CLOSE';
  3. export function openDropdownMenu(id, placement, keyboard) {
  4. return { type: DROPDOWN_MENU_OPEN, id, placement, keyboard };
  5. }
  6. export function closeDropdownMenu(id) {
  7. return { type: DROPDOWN_MENU_CLOSE, id };
  8. }