mirror of
https://github.com/glitch-soc/mastodon.git
synced 2024-11-24 17:14:15 -05:00
18ca4e0e9a
Fix #15092
18 lines
338 B
JavaScript
18 lines
338 B
JavaScript
export const APP_FOCUS = 'APP_FOCUS';
|
|
export const APP_UNFOCUS = 'APP_UNFOCUS';
|
|
|
|
export const focusApp = () => ({
|
|
type: APP_FOCUS,
|
|
});
|
|
|
|
export const unfocusApp = () => ({
|
|
type: APP_UNFOCUS,
|
|
});
|
|
|
|
export const APP_LAYOUT_CHANGE = 'APP_LAYOUT_CHANGE';
|
|
|
|
export const changeLayout = layout => ({
|
|
type: APP_LAYOUT_CHANGE,
|
|
layout,
|
|
});
|