選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. }