Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
12345678910111213141516 |
- /* global JitsiMeetJS */
-
- import 'aui-css';
- import 'aui-experimental-css';
-
- import DeviceSelectionPopup from './DeviceSelectionPopup';
-
- let deviceSelectionPopup;
-
- window.init = i18next => {
- JitsiMeetJS.init({}).then(() => {
- deviceSelectionPopup = new DeviceSelectionPopup(i18next);
- });
- };
-
- window.addEventListener('beforeunload', () => deviceSelectionPopup.close());
|