gab-social/app/javascript/gabsocial/actions/popover.js

19 lines
358 B
JavaScript

export const POPOVER_OPEN = 'POPOVER_OPEN'
export const POPOVER_CLOSE = 'POPOVER_CLOSE'
export function openPopover(type, keyboard = false, placement = 'top') {
return {
keyboard,
placement,
type: POPOVER_OPEN,
popoverType: type,
}
}
export function closePopover(type) {
return {
type: POPOVER_CLOSE,
popoverType: type,
}
}