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

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