|
@@ -1,4 +1,4 @@
|
1
|
|
-/* global $, APP, JitsiMeetJS, interfaceConfig */
|
|
1
|
+/* global $, JitsiMeetJS, interfaceConfig */
|
2
|
2
|
import Avatar from "../avatar/Avatar";
|
3
|
3
|
import UIUtil from "../util/UIUtil";
|
4
|
4
|
import UIEvents from "../../../service/UI/UIEvents";
|
|
@@ -506,9 +506,9 @@ SmallVideo.prototype.showDominantSpeakerIndicator = function (show) {
|
506
|
506
|
});
|
507
|
507
|
|
508
|
508
|
if (show) {
|
509
|
|
- indicatorSpan.classList.add('hide');
|
|
509
|
+ indicatorSpan.classList.add('show');
|
510
|
510
|
} else {
|
511
|
|
- indicatorSpan.classList.remove('hide')
|
|
511
|
+ indicatorSpan.classList.remove('show');
|
512
|
512
|
}
|
513
|
513
|
};
|
514
|
514
|
|
|
@@ -532,9 +532,9 @@ SmallVideo.prototype.showRaisedHandIndicator = function (show) {
|
532
|
532
|
});
|
533
|
533
|
|
534
|
534
|
if (show) {
|
535
|
|
- indicatorSpan.classList.add('hide');
|
|
535
|
+ indicatorSpan.classList.add('show');
|
536
|
536
|
} else {
|
537
|
|
- indicatorSpan.classList.remove('hide')
|
|
537
|
+ indicatorSpan.classList.remove('show');
|
538
|
538
|
}
|
539
|
539
|
};
|
540
|
540
|
|