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:
Leonard Kim 2018-04-10 14:53:09 -07:00 committed by Saúl Ibarra Corretgé
parent 27a1be1e1c
commit a5e4fb000f
3 changed files with 0 additions and 12 deletions

View File

@ -2060,13 +2060,6 @@ export default {
}
});
room.on(
JitsiConferenceEvents.DTMF_SUPPORT_CHANGED,
isDTMFSupported => {
APP.UI.updateDTMFSupport(isDTMFSupported);
}
);
APP.UI.addListener(UIEvents.AUDIO_MUTED, muted => {
this.muteAudio(muted);
});

View File

@ -95,7 +95,6 @@
"hangup": "Leave",
"login": "Login",
"logout": "Logout",
"dialpad": "Open / Close dialpad",
"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.",
"talkWhileMutedPopup": "Trying to speak? You are muted.",

View File

@ -909,10 +909,6 @@ UI.addMessage = function(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) {
Recording.updateRecordingState(state);
};