aboutsummaryrefslogtreecommitdiff
path: root/app/features/conference/components/Conference.js
diff options
context:
space:
mode:
authorAndrei Gavrilescu <andrei.gavrilescu@8x8.com>2020-04-07 12:55:54 +0300
committerSaúl Ibarra Corretgé <s@saghul.net>2020-04-07 14:30:36 +0200
commit81d7aca4b2cec072c6de0ab2d9b0a5d427780b3c (patch)
treef7f6385712b95781551e8cd1f0fc6a03e494ab3c /app/features/conference/components/Conference.js
parent08d53c135e63434d38e3bb8ad02f112a58e0bbfb (diff)
fix security issue / update deps
Diffstat (limited to 'app/features/conference/components/Conference.js')
-rw-r--r--app/features/conference/components/Conference.js18
1 files changed, 9 insertions, 9 deletions
diff --git a/app/features/conference/components/Conference.js b/app/features/conference/components/Conference.js
index a432102..a26ff9c 100644
--- a/app/features/conference/components/Conference.js
+++ b/app/features/conference/components/Conference.js
@@ -7,15 +7,6 @@ import type { Dispatch } from 'redux';
import { connect } from 'react-redux';
import { push } from 'react-router-redux';
-import {
- RemoteControl,
- setupScreenSharingRender,
- setupAlwaysOnTopRender,
- initPopupsConfigurationRender,
- setupWiFiStats,
- setupPowerMonitorRender
-} from 'jitsi-meet-electron-utils';
-
import config from '../../config';
import { setEmail, setName } from '../../settings';
@@ -259,6 +250,15 @@ class Conference extends Component<Props, State> {
parentNode,
roomName: this._conference.room
});
+
+ const { RemoteControl,
+ setupScreenSharingRender,
+ setupAlwaysOnTopRender,
+ initPopupsConfigurationRender,
+ setupWiFiStats,
+ setupPowerMonitorRender
+ } = window.jitsiNodeAPI.jitsiMeetElectronUtils;
+
initPopupsConfigurationRender(this._api);
const iframe = this._api.getIFrame();