Fix: Ensure valid overlay-wrapper ID assignment

This commit is contained in:
lokaesshwar 2025-03-01 22:07:51 +05:30
parent 2387c3afd5
commit 0764aaade8

View file

@ -132,11 +132,8 @@
this.element = options.element;
this.elementWrapper.appendChild(this.element);
if (this.element.id) {
this.elementWrapper.id = "overlay-wrapper-" + this.element.id;
} else {
this.elementWrapper.id = "overlay-wrapper";
}
this.elementWrapper.id = "overlay-wrapper" + (this.element.id ? "-" + this.element.id : "");
this.style = this.elementWrapper.style;
this._init(options);