mirror of
https://github.com/edumeet/edumeet.git
synced 2026-01-23 02:34:58 +00:00
add hideSelfView
This commit is contained in:
parent
1719aec298
commit
ab667d0d3c
1 changed files with 6 additions and 0 deletions
|
|
@ -101,6 +101,7 @@ function run()
|
|||
const hideNoVideoParticipants = parameters.get('hideNoVideoParticipants');
|
||||
const filmstripmode = parameters.get('filmstrip'); // filmstrip mode by default
|
||||
const acceptCookie = parameters.get('acceptCookie'); // auto accept cookie popup
|
||||
const hideSelfView = parameters.get('hideSelfView');
|
||||
|
||||
if (filmstripmode === 'true')
|
||||
{
|
||||
|
|
@ -242,6 +243,11 @@ function run()
|
|||
roomClient.setHideNoVideoParticipants(true);
|
||||
}
|
||||
|
||||
if (hideSelfView === 'true')
|
||||
{
|
||||
store.dispatch(roomActions.setHideSelfView(hideSelfView));
|
||||
}
|
||||
|
||||
global.CLIENT = roomClient;
|
||||
|
||||
render(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue