Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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