Merge pull request #994 from jitsi/disable_dominant_speaker_indicator

feat(SmallVideo.js): New interface.config property for dominant speaker icon disable
This commit is contained in:
Дамян Минков 2016-10-10 22:23:21 -05:00 committed by GitHub
commit d5541f612f
2 changed files with 6 additions and 0 deletions

View File

@ -42,6 +42,7 @@ var interfaceConfig = { // eslint-disable-line no-unused-vars
// Enables feedback star animation.
ENABLE_FEEDBACK_ANIMATION: false,
DISABLE_FOCUS_INDICATOR: false,
DISABLE_DOMINANT_SPEAKER_INDICATOR: false,
AUDIO_LEVEL_PRIMARY_COLOR: "rgba(255,255,255,0.7)",
AUDIO_LEVEL_SECONDARY_COLOR: "rgba(255,255,255,0.4)"
};

View File

@ -508,6 +508,11 @@ SmallVideo.prototype.avatarChanged = function (avatarUrl) {
* @param show whether to show or hide.
*/
SmallVideo.prototype.showDominantSpeakerIndicator = function (show) {
// Don't create and show dominant speaker indicator if
// DISABLE_DOMINANT_SPEAKER_INDICATOR is true
if (interfaceConfig.DISABLE_DOMINANT_SPEAKER_INDICATOR)
return;
if (!this.container) {
console.warn( "Unable to set dominant speaker indicator - "
+ this.videoSpanId + " does not exist");