15 lines
253 B
JavaScript
15 lines
253 B
JavaScript
|
// @flow
|
||
|
|
||
|
import { hideDialog } from '../base/dialog';
|
||
|
|
||
|
import { RemoteVideoMenu } from './components';
|
||
|
|
||
|
/**
|
||
|
* Hides the remote video menu.
|
||
|
*
|
||
|
* @returns {Function}
|
||
|
*/
|
||
|
export function hideRemoteVideoMenu() {
|
||
|
return hideDialog(RemoteVideoMenu);
|
||
|
}
|