In this case makes more sense to have overlay frame included in every overlay instead of abstract class that implements the overlay frame and have to be extended by every overlay. In addition, mapStateToProps isn't working well with inheritance.
13 lines
242 B
JavaScript
13 lines
242 B
JavaScript
/* global APP */
|
|
/**
|
|
* Reloads the page.
|
|
*
|
|
* @returns {void}
|
|
* @protected
|
|
*/
|
|
export function reconnectNow() {
|
|
// FIXME: In future we should dispatch an action here that will result
|
|
// in reload.
|
|
APP.ConferenceUrl.reload();
|
|
}
|