Merge pull request #1038 from jitsi/api_commands

fix(iframe_api): toggleScreenSharing command
pull/1039/head 1377
Дамян Минков 8 years ago committed by GitHub
commit d97ed17052
  1. 3
      modules/API/API.js

@ -50,7 +50,8 @@ function initCommands() {
"toggle-film-strip": APP.UI.toggleFilmStrip,
"toggle-chat": APP.UI.toggleChat,
"toggle-contact-list": APP.UI.toggleContactList,
"toggle-share-screen": APP.conference.toggleScreenSharing,
"toggle-share-screen":
APP.conference.toggleScreenSharing.bind(APP.conference),
"video-hangup": () => APP.conference.hangup()
};
Object.keys(commands).forEach(function (key) {

Loading…
Cancel
Save