Fix resizer crashing jitsi

pull/21833/head
Dariusz Niemczyk 2021-08-24 16:06:10 +02:00
parent a93d5cde09
commit 7645e0413c
No known key found for this signature in database
GPG Key ID: 3E8DC619E3C59A05
1 changed files with 1 additions and 1 deletions

View File

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