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ů.

popup.js 383B

12345678910111213141516
  1. /* global JitsiMeetJS */
  2. import 'aui-css';
  3. import 'aui-experimental-css';
  4. import DeviceSelectionPopup from './DeviceSelectionPopup';
  5. let deviceSelectionPopup;
  6. window.init = i18next => {
  7. JitsiMeetJS.init({}).then(() => {
  8. deviceSelectionPopup = new DeviceSelectionPopup(i18next);
  9. });
  10. };
  11. window.addEventListener('beforeunload', () => deviceSelectionPopup.close());