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

18 lines
324 B
JavaScript
Raw Normal View History

2020-02-28 15:20:47 +00:00
export const POPOVER_OPEN = 'POPOVER_OPEN'
export const POPOVER_CLOSE = 'POPOVER_CLOSE'
2020-03-11 23:56:18 +00:00
export function openPopover(type, props) {
2020-02-28 15:20:47 +00:00
return {
type: POPOVER_OPEN,
popoverType: type,
2020-03-11 23:56:18 +00:00
popoverProps: props,
2020-02-28 15:20:47 +00:00
}
}
export function closePopover(type) {
return {
type: POPOVER_CLOSE,
popoverType: type,
}
}