You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-08 21:42:24 +03:00
bind instead of second member var
This commit is contained in:
@@ -40,7 +40,7 @@ export class Resizer {
|
|||||||
vertical: "resizer-vertical",
|
vertical: "resizer-vertical",
|
||||||
resizing: "resizer-resizing",
|
resizing: "resizer-resizing",
|
||||||
};
|
};
|
||||||
this.mouseDownHandler = (event) => this._onMouseDown(event);
|
this._onMouseDown = this._onMouseDown.bind(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
setClassNames(classNames) {
|
setClassNames(classNames) {
|
||||||
@@ -48,11 +48,11 @@ export class Resizer {
|
|||||||
}
|
}
|
||||||
|
|
||||||
attach() {
|
attach() {
|
||||||
this.container.addEventListener("mousedown", this.mouseDownHandler, false);
|
this.container.addEventListener("mousedown", this._onMouseDown, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
detach() {
|
detach() {
|
||||||
this.container.removeEventListener("mousedown", this.mouseDownHandler, false);
|
this.container.removeEventListener("mousedown", this._onMouseDown, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user