about summary refs log tree commit diff
path: root/app/javascript/mastodon/actions/app.js
blob: 414968f7de47cfef7cf1abe27742efc03ed92959 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
export const APP_FOCUS   = 'APP_FOCUS';
export const APP_UNFOCUS = 'APP_UNFOCUS';

export const focusApp = () => ({
  type: APP_FOCUS,
});

export const unfocusApp = () => ({
  type: APP_UNFOCUS,
});