|
@@ -39,7 +39,7 @@ import {
|
39
|
39
|
import { toggleLobbyMode } from '../../react/features/lobby/actions.web';
|
40
|
40
|
import { RECORDING_TYPES } from '../../react/features/recording/constants';
|
41
|
41
|
import { getActiveSession } from '../../react/features/recording/functions';
|
42
|
|
-import { toggleTileView } from '../../react/features/video-layout';
|
|
42
|
+import { toggleTileView, setTileView } from '../../react/features/video-layout';
|
43
|
43
|
import { muteAllParticipants } from '../../react/features/video-menu/actions';
|
44
|
44
|
import { setVideoQuality } from '../../react/features/video-quality';
|
45
|
45
|
import { getJitsiMeetTransport } from '../transport';
|
|
@@ -209,6 +209,9 @@ function initCommands() {
|
209
|
209
|
|
210
|
210
|
APP.store.dispatch(toggleTileView());
|
211
|
211
|
},
|
|
212
|
+ 'set-tile-view': enabled => {
|
|
213
|
+ APP.store.dispatch(setTileView(enabled));
|
|
214
|
+ },
|
212
|
215
|
'video-hangup': (showFeedbackDialog = true) => {
|
213
|
216
|
sendAnalytics(createApiEvent('video.hangup'));
|
214
|
217
|
APP.conference.hangup(showFeedbackDialog);
|