Make functions private

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
pull/21833/head
Šimon Brandner 2021-03-22 07:40:36 +01:00
parent 787a62846e
commit b257c25c2c
No known key found for this signature in database
GPG Key ID: 9760693FDD98A790
1 changed files with 3 additions and 3 deletions

View File

@ -79,15 +79,15 @@ 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();
}