您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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());