ref(toolbar): removed unused dialpad logic
The old toolbar had a dialpad button that did a no-op. Remove the remnant of that logic.
This commit is contained in:
parent
27a1be1e1c
commit
a5e4fb000f
|
@ -2060,13 +2060,6 @@ export default {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
room.on(
|
|
||||||
JitsiConferenceEvents.DTMF_SUPPORT_CHANGED,
|
|
||||||
isDTMFSupported => {
|
|
||||||
APP.UI.updateDTMFSupport(isDTMFSupported);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
APP.UI.addListener(UIEvents.AUDIO_MUTED, muted => {
|
APP.UI.addListener(UIEvents.AUDIO_MUTED, muted => {
|
||||||
this.muteAudio(muted);
|
this.muteAudio(muted);
|
||||||
});
|
});
|
||||||
|
|
|
@ -95,7 +95,6 @@
|
||||||
"hangup": "Leave",
|
"hangup": "Leave",
|
||||||
"login": "Login",
|
"login": "Login",
|
||||||
"logout": "Logout",
|
"logout": "Logout",
|
||||||
"dialpad": "Open / Close dialpad",
|
|
||||||
"sharedVideoMutedPopup": "Your shared video has been muted so that you can talk to the other members.",
|
"sharedVideoMutedPopup": "Your shared video has been muted so that you can talk to the other members.",
|
||||||
"micMutedPopup": "Your microphone has been muted so that you would fully enjoy your shared video.",
|
"micMutedPopup": "Your microphone has been muted so that you would fully enjoy your shared video.",
|
||||||
"talkWhileMutedPopup": "Trying to speak? You are muted.",
|
"talkWhileMutedPopup": "Trying to speak? You are muted.",
|
||||||
|
|
|
@ -909,10 +909,6 @@ UI.addMessage = function(from, displayName, message, stamp) {
|
||||||
Chat.updateChatConversation(from, displayName, message, stamp);
|
Chat.updateChatConversation(from, displayName, message, stamp);
|
||||||
};
|
};
|
||||||
|
|
||||||
// TODO: With Toolbox v2 this got scrapped. Remove?
|
|
||||||
// eslint-disable-next-line no-empty-function
|
|
||||||
UI.updateDTMFSupport = () => { };
|
|
||||||
|
|
||||||
UI.updateRecordingState = function(state) {
|
UI.updateRecordingState = function(state) {
|
||||||
Recording.updateRecordingState(state);
|
Recording.updateRecordingState(state);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue