|
@@ -72,6 +72,9 @@ type Props = AbstractProps & {
|
72
|
72
|
*/
|
73
|
73
|
_fullscreenEnabled: boolean,
|
74
|
74
|
|
|
75
|
+ /**
|
|
76
|
+ * The indicator which determines if the participants pane is open.
|
|
77
|
+ */
|
75
|
78
|
_isOpen: boolean,
|
76
|
79
|
|
77
|
80
|
/**
|
|
@@ -391,7 +394,6 @@ class Conference extends AbstractConference<Props, *> {
|
391
|
394
|
* @returns {Props}
|
392
|
395
|
*/
|
393
|
396
|
function _mapStateToProps(state) {
|
394
|
|
- const { isOpen } = state['features/participants-pane'];
|
395
|
397
|
const { connecting, connection } = state['features/base/connection'];
|
396
|
398
|
const {
|
397
|
399
|
conference,
|
|
@@ -399,6 +401,7 @@ function _mapStateToProps(state) {
|
399
|
401
|
membersOnly,
|
400
|
402
|
leaving
|
401
|
403
|
} = state['features/base/conference'];
|
|
404
|
+ const { isOpen } = state['features/participants-pane'];
|
402
|
405
|
const { aspectRatio, reducedUI } = state['features/base/responsive-ui'];
|
403
|
406
|
|
404
|
407
|
// XXX There is a window of time between the successful establishment of the
|