diff --git a/app/features/conference/components/Conference.js b/app/features/conference/components/Conference.js index 32d95ae76..4a16474fb 100644 --- a/app/features/conference/components/Conference.js +++ b/app/features/conference/components/Conference.js @@ -16,6 +16,8 @@ import { conferenceEnded, conferenceJoined } from '../actions'; import JitsiMeetExternalAPI from '../external_api'; import { LoadingIndicator, Wrapper } from '../styled'; +// For enabling remote control, please change ENABLE_REMOTE_CONTROL flag in +// main.js to true as well const ENABLE_REMOTE_CONTROL = false; type Props = { diff --git a/main.js b/main.js index 4afb853c8..c93bd88e2 100644 --- a/main.js +++ b/main.js @@ -28,6 +28,8 @@ const pkgJson = require('./package.json'); const showDevTools = Boolean(process.env.SHOW_DEV_TOOLS) || (process.argv.indexOf('--show-dev-tools') > -1); +// For enabling remote control, please change the ENABLE_REMOTE_CONTROL flag in +// app/features/conference/components/Conference.js to true as well const ENABLE_REMOTE_CONTROL = false; // We need this because of https://github.com/electron/electron/issues/18214