您最多选择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. }