Merge pull request #2698 from lokaesshwar/duplicate_ids_overlay_html_2682

Duplicate ids overlay html 2682
This commit is contained in:
Ian Gilman 2025-03-26 09:36:17 -07:00 committed by GitHub
commit 6bdd186219
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -133,10 +133,11 @@
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; // Unique ID if element has one
}
// Always add a class for styling & selection
this.elementWrapper.classList.add("openseadragon-overlay-wrapper");
this.style = this.elementWrapper.style;
this._init(options);
@ -498,4 +499,4 @@
}
};
}(OpenSeadragon));
}(OpenSeadragon));