瀏覽代碼

feat(native-participants-pane) Updated comments

master
Calin Chitu 4 年之前
父節點
當前提交
b332fb474b
共有 1 個文件被更改,包括 4 次插入1 次删除
  1. 4
    1
      react/features/conference/components/native/Conference.js

+ 4
- 1
react/features/conference/components/native/Conference.js 查看文件

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

Loading…
取消
儲存