mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-04-06 07:13:31 +03:00
Update overlay.js
This commit is contained in:
parent
0af819ee16
commit
2d7415abe0
1 changed files with 5 additions and 4 deletions
|
@ -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");
|
||||
|
|
Loading…
Add table
Reference in a new issue