Merge pull request #928 from maximax123/fix-command
hot fix api.executeCommand
This commit is contained in:
commit
94366190a0
|
@ -45,8 +45,8 @@ let enabled = false;
|
||||||
function initCommands() {
|
function initCommands() {
|
||||||
commands = {
|
commands = {
|
||||||
"display-name": APP.UI.inputDisplayNameHandler,
|
"display-name": APP.UI.inputDisplayNameHandler,
|
||||||
"toggle-audio": APP.conference.toggleAudioMuted,
|
"toggle-audio": APP.conference.toggleAudioMuted.bind(APP.conference),
|
||||||
"toggle-video": APP.conference.toggleVideoMuted,
|
"toggle-video": APP.conference.toggleVideoMuted.bind(APP.conference),
|
||||||
"toggle-film-strip": APP.UI.toggleFilmStrip,
|
"toggle-film-strip": APP.UI.toggleFilmStrip,
|
||||||
"toggle-chat": APP.UI.toggleChat,
|
"toggle-chat": APP.UI.toggleChat,
|
||||||
"toggle-contact-list": APP.UI.toggleContactList,
|
"toggle-contact-list": APP.UI.toggleContactList,
|
||||||
|
|
Loading…
Reference in New Issue