Update overlay.js

This commit is contained in:
Lokaesshwar 2025-03-26 19:51:58 +05:30 committed by GitHub
parent 0af819ee16
commit 2d7415abe0
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-" + crypto.randomUUID(); // Ensure unique ID
}
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");
// Always add a class for easier selection
this.elementWrapper.classList.add("openseadragon-overlay-wrapper");