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.

subscriber.web.js 399B

1234567891011121314
  1. // @flow
  2. import { StateListenerRegistry } from '../base/redux';
  3. import VideoLayout from '../../../modules/UI/videolayout/VideoLayout';
  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. );