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

functions.js 242B

123456789101112
  1. /* global APP */
  2. /**
  3. * Reloads the page.
  4. *
  5. * @returns {void}
  6. * @protected
  7. */
  8. export function reconnectNow() {
  9. // FIXME: In future we should dispatch an action here that will result
  10. // in reload.
  11. APP.ConferenceUrl.reload();
  12. }