You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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