Fixes all shortcuts.

This commit is contained in:
yanas 2016-02-05 12:53:31 -06:00
parent e7e8dc3457
commit e09a2f5bee
1 changed files with 15 additions and 5 deletions

View File

@ -6,22 +6,30 @@ function initShortcutHandlers() {
67: { 67: {
character: "C", character: "C",
id: "toggleChatPopover", id: "toggleChatPopover",
function: APP.UI.toggleChat function: function() {
APP.UI.toggleChat();
}
}, },
68: { 68: {
character: "D", character: "D",
id: "toggleDesktopSharingPopover", id: "toggleDesktopSharingPopover",
function: APP.desktopsharing.toggleScreenSharing function: function() {
APP.desktopsharing.toggleScreenSharing();
}
}, },
70: { 70: {
character: "F", character: "F",
id: "filmstripPopover", id: "filmstripPopover",
function: APP.UI.toggleFilmStrip function: function() {
APP.UI.toggleFilmStrip();
}
}, },
77: { 77: {
character: "M", character: "M",
id: "mutePopover", id: "mutePopover",
function: APP.conference.toggleAudioMuted function: function() {
APP.conference.toggleAudioMuted();
}
}, },
84: { 84: {
character: "T", character: "T",
@ -32,7 +40,9 @@ function initShortcutHandlers() {
86: { 86: {
character: "V", character: "V",
id: "toggleVideoPopover", id: "toggleVideoPopover",
function: APP.conference.toggleVideoMuted function: function() {
APP.conference.toggleVideoMuted();
}
} }
}; };
} }