Merge branch 'develop' into feed

This commit is contained in:
Šimon Brandner 2021-04-07 19:17:35 +02:00
commit adb0877591
No known key found for this signature in database
GPG key ID: 9760693FDD98A790
51 changed files with 2876 additions and 719 deletions

View file

@ -79,17 +79,17 @@ export default class CallViewForRoom extends React.Component<IProps, IState> {
return call;
}
onResizeStart = () => {
private onResizeStart = () => {
this.props.resizeNotifier.startResizing();
}
};
onResize = () => {
private onResize = () => {
this.props.resizeNotifier.notifyTimelineHeightChanged();
}
};
onResizeStop = () => {
private onResizeStop = () => {
this.props.resizeNotifier.stopResizing();
}
};
public render() {
if (!this.state.call) return null;