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

123456789101112131415161718192021222324252627282930313233343536
  1. import Filmstrip from '../modules/UI/videolayout/Filmstrip';
  2. import * as fs from '../modules/UI/videolayout/Filmstrip';
  3. // import * as rf_filmstrip from '../../../react/features/filmstrip';
  4. import * as rf_filmstrip from '../react/features/filmstrip';
  5. import * as rf_hooks from './hooks/Hooks';
  6. // import * as rf_filmstrip from '../react/features/filmstrip';
  7. import SmallVideo from '../modules/UI/videolayout/SmallVideo';
  8. import LocalVideo from '../modules/UI/videolayout/LocalVideo';
  9. import RemoteVideo from '../modules/UI/videolayout/RemoteVideo';
  10. import { shouldDisplayTileView,calcTileGrid,getMaxColumnCount } from '../react/features/video-layout';
  11. import * as video_layout from '../react/features/video-layout';
  12. import * as base_conference from '../react/features/base/conference';
  13. import * as toolbox from '../react/features/toolbox';
  14. // import * as auth from '../react/features/authentication';
  15. // LocalVideo
  16. // C:\bspace\repos\jc2\jitsi_corner2\react\features\authentication\middleware.js
  17. console.log("JC2!")
  18. window.glob_react = window.glob_react || {"i":"jc2"}
  19. // window.glob_react = {
  20. // Filmstrip,fs,rf_filmstrip,
  21. // }
  22. Object.assign(window.glob_react, {
  23. Filmstrip,fs,rf_filmstrip,video_layout,base_conference,toolbox,
  24. vidClass:{SmallVideo,LocalVideo,RemoteVideo},
  25. fns:{shouldDisplayTileView,calcTileGrid,TILE_ASPECT_RATIO:rf_filmstrip.TILE_ASPECT_RATIO,getMaxColumnCount},
  26. })
  27. window.Filmstrip = Filmstrip
  28. window.shouldDisplayTileView = shouldDisplayTileView
  29. window.rf_hooks = rf_hooks