mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-04-03 13:53:31 +03:00
Fix: Ensure valid overlay-wrapper ID assignment
This commit is contained in:
parent
2387c3afd5
commit
0764aaade8
1 changed files with 2 additions and 5 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue