Skip to content
Snippets Groups Projects
Commit 0b88a783 authored by Saúl Ibarra Corretgé's avatar Saúl Ibarra Corretgé
Browse files

Temporarily disable remote control

parent 203f1387
No related branches found
No related tags found
No related merge requests found
...@@ -15,6 +15,8 @@ import { conferenceEnded, conferenceJoined } from '../actions'; ...@@ -15,6 +15,8 @@ import { conferenceEnded, conferenceJoined } from '../actions';
import JitsiMeetExternalAPI from '../external_api'; import JitsiMeetExternalAPI from '../external_api';
import { LoadingIndicator, Wrapper } from '../styled'; import { LoadingIndicator, Wrapper } from '../styled';
const ENABLE_REMOTE_CONTROL = false;
type Props = { type Props = {
/** /**
...@@ -248,7 +250,10 @@ class Conference extends Component<Props, State> { ...@@ -248,7 +250,10 @@ class Conference extends Component<Props, State> {
const iframe = this._api.getIFrame(); const iframe = this._api.getIFrame();
setupScreenSharingRender(this._api); setupScreenSharingRender(this._api);
new RemoteControl(iframe); // eslint-disable-line no-new
if (ENABLE_REMOTE_CONTROL) {
new RemoteControl(iframe); // eslint-disable-line no-new
}
// Allow window to be on top if enabled in settings // Allow window to be on top if enabled in settings
if (this.props._alwaysOnTopWindowEnabled) { if (this.props._alwaysOnTopWindowEnabled) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment