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 322B

123456789101112
  1. /* global JitsiMeetJS */
  2. import DeviceSelectionPopup from './components/web/DeviceSelectionPopup';
  3. let deviceSelectionPopup;
  4. window.init = i18next => {
  5. JitsiMeetJS.init();
  6. deviceSelectionPopup = new DeviceSelectionPopup(i18next);
  7. };
  8. window.addEventListener('beforeunload', () => deviceSelectionPopup.close());