feat(small-video): add flag to hide connection indicators (#3225)
This commit is contained in:
parent
3f3a957f40
commit
afe7c4470d
|
@ -137,6 +137,13 @@ var interfaceConfig = {
|
||||||
*/
|
*/
|
||||||
CONNECTION_INDICATOR_AUTO_HIDE_TIMEOUT: 5000,
|
CONNECTION_INDICATOR_AUTO_HIDE_TIMEOUT: 5000,
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If true, hides the connection indicators completely.
|
||||||
|
*
|
||||||
|
* @type {boolean}
|
||||||
|
*/
|
||||||
|
CONNECTION_INDICATOR_DISABLED: false,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The name of the application connected to the "Add people" search service.
|
* The name of the application connected to the "Add people" search service.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -114,7 +114,8 @@ function SmallVideo(VideoLayout) {
|
||||||
* @private
|
* @private
|
||||||
* @type {boolean}
|
* @type {boolean}
|
||||||
*/
|
*/
|
||||||
this._showConnectionIndicator = true;
|
this._showConnectionIndicator
|
||||||
|
= !interfaceConfig.CONNECTION_INDICATOR_DISABLED;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether or not the dominant speaker indicator should be displayed.
|
* Whether or not the dominant speaker indicator should be displayed.
|
||||||
|
|
Loading…
Reference in New Issue