Merge pull request #6670 from matrix-org/palid/fix/difficult-to-grab-scrollbar

Fix resizer for detaching
pull/21833/head
Dariusz Niemczyk 2021-08-24 18:28:09 +02:00 committed by GitHub
commit 4d7b6f3c4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ export default class Resizer<C extends IConfig = IConfig> {
}
public detach() {
const attachment = this?.config?.handler.parentElement ?? this.container;
const attachment = this?.config?.handler?.parentElement ?? this.container;
attachment.removeEventListener("mousedown", this.onMouseDown, false);
window.removeEventListener("resize", this.onResize);
}