mirror of https://github.com/vector-im/riot-web
Make functions private
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>pull/21833/head
parent
787a62846e
commit
b257c25c2c
|
@ -79,15 +79,15 @@ export default class CallViewForRoom extends React.Component<IProps, IState> {
|
||||||
return call;
|
return call;
|
||||||
}
|
}
|
||||||
|
|
||||||
onResizeStart = () => {
|
private onResizeStart = () => {
|
||||||
this.props.resizeNotifier.startResizing();
|
this.props.resizeNotifier.startResizing();
|
||||||
}
|
}
|
||||||
|
|
||||||
onResize = () => {
|
private onResize = () => {
|
||||||
this.props.resizeNotifier.notifyTimelineHeightChanged();
|
this.props.resizeNotifier.notifyTimelineHeightChanged();
|
||||||
}
|
}
|
||||||
|
|
||||||
onResizeStop = () => {
|
private onResizeStop = () => {
|
||||||
this.props.resizeNotifier.stopResizing();
|
this.props.resizeNotifier.stopResizing();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue