Resolved Duplicate IDs in overlay HTML

This commit is contained in:
lokaesshwar 2025-03-14 00:35:22 +05:30
parent 595066abd1
commit 4c7d9a2ffa

View file

@ -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);