mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-04-03 22:03:31 +03:00
Fix duplicate overlay wrapper IDs: assign id only if element has an id and add overlay wrapper class
This commit is contained in:
parent
595066abd1
commit
9901949c71
1 changed files with 8 additions and 2 deletions
|
@ -132,11 +132,17 @@
|
|||
this.element = options.element;
|
||||
this.elementWrapper.appendChild(this.element);
|
||||
|
||||
// Create the overlay wrapper
|
||||
this.elementWrapper = document.createElement('div');
|
||||
this.elementWrapper.appendChild(this.element);
|
||||
|
||||
// Assign a unique ID only if the overlay element has an id
|
||||
if (this.element.id) {
|
||||
this.elementWrapper.id = "overlay-wrapper-" + this.element.id;
|
||||
} else {
|
||||
this.elementWrapper.id = "overlay-wrapper";
|
||||
}
|
||||
// Always add a class for styling and selection purposes
|
||||
this.elementWrapper.className = "openseadragon-overlay-wrapper";
|
||||
|
||||
|
||||
this.style = this.elementWrapper.style;
|
||||
this._init(options);
|
||||
|
|
Loading…
Add table
Reference in a new issue