You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-11 20:22:36 +03:00
Make functions private
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
@@ -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();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user