Enables local video flip menu by default.

This commit is contained in:
damencho 2019-05-23 19:07:05 +03:00 committed by Дамян Минков
parent 840c0190c4
commit 0dad99c3b7
3 changed files with 6 additions and 3 deletions

View File

@ -414,6 +414,10 @@ var config = {
// use only.
// _desktopSharingSourceDevice: 'sample-id-or-label'
// A property to disable the right click context menu for localVideo
// the menu has option to flip the locally seen video for local presentations
// disableLocalVideoFlip: false
// List of undocumented settings used in jitsi-meet
/**
_immediateReloadThreshold
@ -428,7 +432,6 @@ var config = {
dialOutCodesUrl
disableRemoteControl
displayJids
enableLocalVideoFlip
etherpad_base
externalConnectUrl
firefox_fake_device

View File

@ -32,7 +32,7 @@ function LocalVideo(VideoLayout, emitter, streamEndedCallback) {
this.localVideoId = null;
this.bindHoverHandler();
if (config.enableLocalVideoFlip) {
if (!config.disableLocalVideoFlip) {
this._buildContextMenu();
}
this.isLocal = true;

View File

@ -101,7 +101,7 @@ const WHITELISTED_KEYS = [
'enableDisplayNameInStats',
'enableLayerSuspension',
'enableLipSync',
'enableLocalVideoFlip',
'disableLocalVideoFlip',
'enableRemb',
'enableStatsID',
'enableTalkWhileMuted',