Files
jitsi-meet/react/features/device-selection/popup.js
Leonard Kim 2becfd026b fix(device-selection): add proptypes shim for popup
AtlasKit is not fully compatible with React 16. One problem
is PropTypes will not be defined on the React object. So,
add the prop-types shim to the popup bundle.
2017-11-28 15:45:56 -06:00

20 lines
482 B
JavaScript

/* global JitsiMeetJS */
import 'aui-css';
import 'aui-experimental-css';
// FIXME: remove once atlaskit work with React 16.
import '../base/react/prop-types-polyfill.js';
import DeviceSelectionPopup from './DeviceSelectionPopup';
let deviceSelectionPopup;
window.init = i18next => {
JitsiMeetJS.init({}).then(() => {
deviceSelectionPopup = new DeviceSelectionPopup(i18next);
});
};
window.addEventListener('beforeunload', () => deviceSelectionPopup.close());