You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

jc3.native.js 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. import {
  2. participantJoined,
  3. participantLeft,
  4. pinParticipant
  5. } from '../react/features/base/participants';
  6. import * as participants from '../react/features/base/participants';
  7. import * as rui from '../react/features/base/responsive-ui';
  8. import * as filmstrip from '../react/features/filmstrip';
  9. import * as video_layout from '../react/features/video-layout';
  10. import * as base_styles from '../react/features/base/styles';
  11. import * as large_video from '../react/features/large-video';
  12. import * as youtube_player from '../react/features/youtube-player/components';
  13. // import { YoutubeLargeVideo } from '../../../youtube-player/components'
  14. // C:\bspace\repos\jc6\jitsi_corner6\react\features\large-video\components\LargeVideo.native.js
  15. import {
  16. FILMSTRIP_SIZE,
  17. Filmstrip,
  18. isFilmstripVisible,
  19. TileView
  20. } from '../react/features/filmstrip';
  21. import {
  22. getCurrentLayout,
  23. LAYOUTS,
  24. shouldDisplayTileView,
  25. } from '../react/features/video-layout';
  26. // ../react/features
  27. // window.glob_react = window.glob_react || {"i":"jc2"}
  28. window.glob_react = window.glob_react || {"i":"jc3"}
  29. Object.assign(window.glob_react,{
  30. pinParticipant,
  31. participants,
  32. clientResized:rui.clientResized,
  33. filmstrip,
  34. video_layout,
  35. base_styles,
  36. large_video,
  37. youtube_player,
  38. rui,
  39. })