Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

constants.js 665B

1234567891011121314151617181920212223242526272829303132333435
  1. // @flow
  2. /**
  3. * Placeholder for web share video input.
  4. * @type {string}
  5. */
  6. export const defaultSharedVideoLink = 'Youtube link or direct video link';
  7. /**
  8. * Fixed name of the video player fake participant.
  9. * @type {string}
  10. */
  11. export const VIDEO_PLAYER_PARTICIPANT_NAME = 'Video';
  12. /**
  13. * Fixed name of the youtube player fake participant.
  14. * @type {string}
  15. */
  16. export const YOUTUBE_PLAYER_PARTICIPANT_NAME = 'YouTube';
  17. /**
  18. * Shared video command.
  19. * @type {string}
  20. */
  21. export const SHARED_VIDEO = 'shared-video';
  22. /**
  23. * Available playback statuses
  24. */
  25. export const PLAYBACK_STATUSES = {
  26. PLAYING: 'playing',
  27. PAUSED: 'pause',
  28. STOPPED: 'stop'
  29. };