The "t" key should not mute people.

This commit is contained in:
Jesse Bickel 2016-04-25 18:04:36 -05:00
parent 6a74296d3e
commit 2ee5d6f658
1 changed files with 0 additions and 10 deletions

View File

@ -31,12 +31,6 @@ function initShortcutHandlers() {
APP.conference.toggleAudioMuted();
}
},
84: {
character: "T",
function: function() {
APP.conference.muteAudio(true);
}
},
86: {
character: "V",
id: "toggleVideoPopover",
@ -73,10 +67,6 @@ var KeyboardShortcut = {
if(!($(":focus").is("input[type=text]") ||
$(":focus").is("input[type=password]") ||
$(":focus").is("textarea"))) {
if(e.which === "T".charCodeAt(0)) {
if(APP.conference.isLocalAudioMuted())
APP.conference.muteAudio(false);
}
}
};
var self = this;