feat(small-video): add flag to hide connection indicators (#3225)

pull/3228/head jitsi-meet_3205
virtuacoplenny 7 years ago committed by GitHub
parent 3f3a957f40
commit afe7c4470d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      interface_config.js
  2. 3
      modules/UI/videolayout/SmallVideo.js

@ -137,6 +137,13 @@ var interfaceConfig = {
*/
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.
*/

@ -114,7 +114,8 @@ function SmallVideo(VideoLayout) {
* @private
* @type {boolean}
*/
this._showConnectionIndicator = true;
this._showConnectionIndicator
= !interfaceConfig.CONNECTION_INDICATOR_DISABLED;
/**
* Whether or not the dominant speaker indicator should be displayed.

Loading…
Cancel
Save