Skip to content

Commit

Permalink
chore(remote-control) Add instructions for enabling remote control
Browse files Browse the repository at this point in the history
  • Loading branch information
horymury authored and saghul committed Nov 22, 2024
1 parent 1cda0a3 commit 31204c7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/features/conference/components/Conference.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
2 changes: 2 additions & 0 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 31204c7

Please sign in to comment.