mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-17 12:24:31 +00:00
155424e52f
I don't like it changing files this way, but it's basically what
c49213f0ea
and a few others did.
19 lines
379 B
JavaScript
19 lines
379 B
JavaScript
export const MODAL_OPEN = 'MODAL_OPEN';
|
|
export const MODAL_CLOSE = 'MODAL_CLOSE';
|
|
|
|
export function openModal(type, props) {
|
|
return {
|
|
type: MODAL_OPEN,
|
|
modalType: type,
|
|
modalProps: props,
|
|
};
|
|
}
|
|
|
|
export function closeModal(type, options = { ignoreFocus: false }) {
|
|
return {
|
|
type: MODAL_CLOSE,
|
|
modalType: type,
|
|
ignoreFocus: options.ignoreFocus,
|
|
};
|
|
}
|