您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

subscriber.web.js 399B

1234567891011121314
  1. // @flow
  2. import VideoLayout from '../../../modules/UI/videolayout/VideoLayout';
  3. import { StateListenerRegistry } from '../base/redux';
  4. /**
  5. * Updates the on stage participant video.
  6. */
  7. StateListenerRegistry.register(
  8. /* selector */ state => state['features/large-video'].participantId,
  9. /* listener */ participantId => {
  10. VideoLayout.updateLargeVideo(participantId, true);
  11. }
  12. );