19 lines
358 B
JavaScript
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,
|
|
}
|
|
}
|