You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

actions.js 253B

1234567891011121314
  1. // @flow
  2. import { hideDialog } from '../base/dialog';
  3. import { RemoteVideoMenu } from './components';
  4. /**
  5. * Hides the remote video menu.
  6. *
  7. * @returns {Function}
  8. */
  9. export function hideRemoteVideoMenu() {
  10. return hideDialog(RemoteVideoMenu);
  11. }