|
@@ -1,5 +1,4 @@
|
1
|
|
-/* global $, APP, JitsiMeetJS */
|
2
|
|
-/* jshint -W101 */
|
|
1
|
+/* global $, APP, JitsiMeetJS, interfaceConfig */
|
3
|
2
|
import Avatar from "../avatar/Avatar";
|
4
|
3
|
import UIUtil from "../util/UIUtil";
|
5
|
4
|
import UIEvents from "../../../service/UI/UIEvents";
|
|
@@ -291,6 +290,8 @@ SmallVideo.prototype.getVideoMutedIndicator = function () {
|
291
|
290
|
* Creates the element indicating the moderator(owner) of the conference.
|
292
|
291
|
*/
|
293
|
292
|
SmallVideo.prototype.createModeratorIndicatorElement = function () {
|
|
293
|
+ // don't create moderator indicator if DISABLE_FOCUS_INDICATOR is true
|
|
294
|
+ if (interfaceConfig.DISABLE_FOCUS_INDICATOR) return false;
|
294
|
295
|
// Show moderator indicator
|
295
|
296
|
var indicatorSpan = $('#' + this.videoSpanId + ' .focusindicator');
|
296
|
297
|
|