|
@@ -17,6 +17,7 @@ import mediaDeviceHelper from './modules/devices/mediaDeviceHelper';
|
17
|
17
|
import {reportError} from './modules/util/helpers';
|
18
|
18
|
|
19
|
19
|
import UIErrors from './modules/UI/UIErrors';
|
|
20
|
+import UIUtil from './modules/UI/util/UIUtil';
|
20
|
21
|
|
21
|
22
|
const ConnectionEvents = JitsiMeetJS.events.connection;
|
22
|
23
|
const ConnectionErrors = JitsiMeetJS.errors.connection;
|
|
@@ -1097,6 +1098,11 @@ export default {
|
1097
|
1098
|
APP.UI.setAudioLevel(id, lvl);
|
1098
|
1099
|
});
|
1099
|
1100
|
|
|
1101
|
+ room.on(ConferenceEvents.TALK_WHILE_MUTED, () => {
|
|
1102
|
+ APP.UI.showToolbar();
|
|
1103
|
+ UIUtil.animateShowElement($("#talkWhileMutedPopup"), true, 5000);
|
|
1104
|
+ });
|
|
1105
|
+
|
1100
|
1106
|
room.on(ConferenceEvents.IN_LAST_N_CHANGED, (inLastN) => {
|
1101
|
1107
|
//FIXME
|
1102
|
1108
|
if (config.muteLocalVideoIfNotInLastN) {
|