1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- import {
- participantJoined,
- participantLeft,
- pinParticipant
- } from '../react/features/base/participants';
- import * as participants from '../react/features/base/participants';
- import * as rui from '../react/features/base/responsive-ui';
-
- import * as filmstrip from '../react/features/filmstrip';
- import * as video_layout from '../react/features/video-layout';
- import * as base_styles from '../react/features/base/styles';
- import * as large_video from '../react/features/large-video';
- import * as youtube_player from '../react/features/youtube-player/components';
-
-
- // import { YoutubeLargeVideo } from '../../../youtube-player/components'
- // C:\bspace\repos\jc6\jitsi_corner6\react\features\large-video\components\LargeVideo.native.js
- import {
- FILMSTRIP_SIZE,
- Filmstrip,
- isFilmstripVisible,
- TileView
- } from '../react/features/filmstrip';
- import {
- getCurrentLayout,
- LAYOUTS,
- shouldDisplayTileView,
- } from '../react/features/video-layout';
-
-
- // ../react/features
-
- // window.glob_react = window.glob_react || {"i":"jc2"}
- window.glob_react = window.glob_react || {"i":"jc3"}
-
-
- Object.assign(window.glob_react,{
- pinParticipant,
- participants,
- clientResized:rui.clientResized,
- filmstrip,
- video_layout,
- base_styles,
- large_video,
- youtube_player,
- rui,
- })
|