mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
14 lines
318 B
JavaScript
14 lines
318 B
JavaScript
import 'aui-css';
|
|
import 'aui-experimental-css';
|
|
|
|
import DeviceSelectionPopup from './DeviceSelectionPopup';
|
|
|
|
let deviceSelectionPopup;
|
|
|
|
window.init = function(i18next) {
|
|
deviceSelectionPopup = new DeviceSelectionPopup(i18next);
|
|
};
|
|
|
|
window.addEventListener('beforeunload', () =>
|
|
deviceSelectionPopup.close());
|