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

actions.native.js 619B

123456789101112131415161718192021222324252627282930313233
  1. // @flow
  2. import { hideDialog } from '../base/dialog';
  3. import { RemoteVideoMenu, SharedVideoMenu, LocalVideoMenu } from './components/native';
  4. /**
  5. * Hides the local video menu.
  6. *
  7. * @returns {Function}
  8. */
  9. export function hideLocalVideoMenu() {
  10. return hideDialog(LocalVideoMenu);
  11. }
  12. /**
  13. * Hides the remote video menu.
  14. *
  15. * @returns {Function}
  16. */
  17. export function hideRemoteVideoMenu() {
  18. return hideDialog(RemoteVideoMenu);
  19. }
  20. /**
  21. * Hides the shared video menu.
  22. *
  23. * @returns {Function}
  24. */
  25. export function hideSharedVideoMenu() {
  26. return hideDialog(SharedVideoMenu);
  27. }
  28. export * from './actions.any';