aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorSaúl Ibarra Corretgé <s@saghul.net>2020-07-02 08:47:27 +0200
committerSaúl Ibarra Corretgé <s@saghul.net>2020-07-02 08:47:27 +0200
commit0b88a783f3f7658d7e04e8a868ffbb4b56b77c7b (patch)
treed8d0ce60a1f15195c5a76674afdf277bbf253cbe /app
parent203f1387e9ce8deadd68159fd26db6211aff3d36 (diff)
Temporarily disable remote control
Diffstat (limited to 'app')
-rw-r--r--app/features/conference/components/Conference.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/app/features/conference/components/Conference.js b/app/features/conference/components/Conference.js
index 4a4dbb5..9bd6a16 100644
--- a/app/features/conference/components/Conference.js
+++ b/app/features/conference/components/Conference.js
@@ -15,6 +15,8 @@ import { conferenceEnded, conferenceJoined } from '../actions';
import JitsiMeetExternalAPI from '../external_api';
import { LoadingIndicator, Wrapper } from '../styled';
+const ENABLE_REMOTE_CONTROL = false;
+
type Props = {
/**
@@ -248,7 +250,10 @@ class Conference extends Component<Props, State> {
const iframe = this._api.getIFrame();
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
if (this.props._alwaysOnTopWindowEnabled) {