Make functions private
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
parent
787a62846e
commit
b257c25c2c
1 changed files with 3 additions and 3 deletions
|
@ -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();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue