|
@@ -279,7 +279,6 @@ class Filmstrip extends PureComponent <Props> {
|
279
|
279
|
*/
|
280
|
280
|
_onListItemsRendered({ overscanStartIndex, overscanStopIndex }) {
|
281
|
281
|
const { dispatch } = this.props;
|
282
|
|
- console.log("fake cls_dec. _onListItemsRendered")
|
283
|
282
|
|
284
|
283
|
dispatch(setVisibleRemoteParticipants(overscanStartIndex, overscanStopIndex));
|
285
|
284
|
}
|
|
@@ -301,7 +300,6 @@ class Filmstrip extends PureComponent <Props> {
|
301
|
300
|
const { _columns, dispatch } = this.props;
|
302
|
301
|
const startIndex = (overscanRowStartIndex * _columns) + overscanColumnStartIndex;
|
303
|
302
|
const endIndex = (overscanRowStopIndex * _columns) + overscanColumnStopIndex;
|
304
|
|
- console.log("fake cls_dec. _onGridItemsRendered")
|
305
|
303
|
|
306
|
304
|
dispatch(setVisibleRemoteParticipants(startIndex, endIndex));
|
307
|
305
|
}
|
|
@@ -542,6 +540,6 @@ function _mapStateToProps(state) {
|
542
|
540
|
};
|
543
|
541
|
}
|
544
|
542
|
console.log("Filmstrip WEB2?")
|
545
|
|
-// window.glob_dbg.Filmstrip = Filmstrip
|
|
543
|
+window.glob_dbg.Filmstrip = Filmstrip
|
546
|
544
|
if (window?.glob_dbg?.j){window.glob_dbg.j.Filmstrip = Filmstrip}
|
547
|
545
|
export default translate(connect(_mapStateToProps)(Filmstrip));
|