Fix #2682: Ensure unique ID for overlay wrapper to prevent duplicate IDs

This commit is contained in:
lokaesshwar 2025-03-26 19:38:02 +05:30
parent 4c7d9a2ffa
commit c54c292873

View file

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