Browse Source

ref(toolbar): removed unused dialpad logic

The old toolbar had a dialpad button that did a no-op.
Remove the remnant of that logic.
master
Leonard Kim 7 years ago
parent
commit
a5e4fb000f
3 changed files with 0 additions and 12 deletions
  1. 0
    7
      conference.js
  2. 0
    1
      lang/main.json
  3. 0
    4
      modules/UI/UI.js

+ 0
- 7
conference.js View File

@@ -2060,13 +2060,6 @@ export default {
2060 2060
             }
2061 2061
         });
2062 2062
 
2063
-        room.on(
2064
-            JitsiConferenceEvents.DTMF_SUPPORT_CHANGED,
2065
-            isDTMFSupported => {
2066
-                APP.UI.updateDTMFSupport(isDTMFSupported);
2067
-            }
2068
-        );
2069
-
2070 2063
         APP.UI.addListener(UIEvents.AUDIO_MUTED, muted => {
2071 2064
             this.muteAudio(muted);
2072 2065
         });

+ 0
- 1
lang/main.json View File

@@ -95,7 +95,6 @@
95 95
         "hangup": "Leave",
96 96
         "login": "Login",
97 97
         "logout": "Logout",
98
-        "dialpad": "Open / Close dialpad",
99 98
         "sharedVideoMutedPopup": "Your shared video has been muted so that you can talk to the other members.",
100 99
         "micMutedPopup": "Your microphone has been muted so that you would fully enjoy your shared video.",
101 100
         "talkWhileMutedPopup": "Trying to speak? You are muted.",

+ 0
- 4
modules/UI/UI.js View File

@@ -909,10 +909,6 @@ UI.addMessage = function(from, displayName, message, stamp) {
909 909
     Chat.updateChatConversation(from, displayName, message, stamp);
910 910
 };
911 911
 
912
-// TODO: With Toolbox v2 this got scrapped. Remove?
913
-// eslint-disable-next-line no-empty-function
914
-UI.updateDTMFSupport = () => { };
915
-
916 912
 UI.updateRecordingState = function(state) {
917 913
     Recording.updateRecordingState(state);
918 914
 };

Loading…
Cancel
Save