jiti-meet/react/features/unsupported-browser/actions.js

17 lines
373 B
JavaScript
Raw Normal View History

2017-01-19 15:47:22 +00:00
import { MOBILE_BROWSER_PAGE_IS_SHOWN } from './actionTypes';
2016-12-23 16:21:51 +00:00
import './reducer';
/**
2017-01-19 15:47:22 +00:00
* Returns an action that mobile browser page is shown and there is no need
* to show it on other pages.
2016-12-23 16:21:51 +00:00
*
* @returns {{
2017-01-19 15:47:22 +00:00
* type: MOBILE_BROWSER_PAGE_IS_SHOWN
2016-12-23 16:21:51 +00:00
* }}
*/
2017-01-19 15:47:22 +00:00
export function mobileBrowserPageIsShown() {
2016-12-23 16:21:51 +00:00
return {
2017-01-19 15:47:22 +00:00
type: MOBILE_BROWSER_PAGE_IS_SHOWN
2016-12-23 16:21:51 +00:00
};
}