mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-04-03 22:03:31 +03:00
Fix #2682: Ensure unique ID for overlay wrapper to prevent duplicate IDs
This commit is contained in:
parent
4c7d9a2ffa
commit
c54c292873
1 changed files with 3 additions and 6 deletions
|
@ -133,12 +133,9 @@
|
|||
this.elementWrapper.appendChild(this.element);
|
||||
|
||||
if (this.element.id) {
|
||||
this.elementWrapper.id = "overlay-wrapper-" + this.element.id;
|
||||
} else {
|
||||
this.elementWrapper.id = "overlay-wrapper-" + crypto.randomUUID(); // Ensure unique ID
|
||||
this.elementWrapper.id = "overlay-wrapper-" + this.element.id; // Unique ID if element has one
|
||||
}
|
||||
|
||||
// Always add a class for easier selection
|
||||
// Always add a class for styling & selection
|
||||
this.elementWrapper.classList.add("openseadragon-overlay-wrapper");
|
||||
|
||||
|
||||
|
@ -502,4 +499,4 @@
|
|||
}
|
||||
};
|
||||
|
||||
}(OpenSeadragon));
|
||||
}(OpenSeadragon));
|
Loading…
Add table
Reference in a new issue