mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-04-06 07:13:31 +03:00
Resolved Duplicate IDs in overlay HTML
This commit is contained in:
parent
595066abd1
commit
4c7d9a2ffa
1 changed files with 5 additions and 1 deletions
|
@ -135,8 +135,12 @@
|
|||
if (this.element.id) {
|
||||
this.elementWrapper.id = "overlay-wrapper-" + this.element.id;
|
||||
} else {
|
||||
this.elementWrapper.id = "overlay-wrapper";
|
||||
this.elementWrapper.id = "overlay-wrapper-" + crypto.randomUUID(); // Ensure unique ID
|
||||
}
|
||||
|
||||
// Always add a class for easier selection
|
||||
this.elementWrapper.classList.add("openseadragon-overlay-wrapper");
|
||||
|
||||
|
||||
this.style = this.elementWrapper.style;
|
||||
this._init(options);
|
||||
|
|
Loading…
Add table
Reference in a new issue