mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-04-03 13:53:31 +03:00
Remove duplicate overlay wrapper creation
Eliminate redundant code that created the overlay wrapper twice in the constructor. The duplicate creation on line 135 was unnecessary since the wrapper was already instantiated and appended earlier. This cleanup improves code clarity and prevents potential unintended side effects.
This commit is contained in:
parent
9901949c71
commit
61dcf20a38
1 changed files with 0 additions and 4 deletions
|
@ -132,10 +132,6 @@
|
|||
this.element = options.element;
|
||||
this.elementWrapper.appendChild(this.element);
|
||||
|
||||
// Create the overlay wrapper
|
||||
this.elementWrapper = document.createElement('div');
|
||||
this.elementWrapper.appendChild(this.element);
|
||||
|
||||
// Assign a unique ID only if the overlay element has an id
|
||||
if (this.element.id) {
|
||||
this.elementWrapper.id = "overlay-wrapper-" + this.element.id;
|
||||
|
|
Loading…
Add table
Reference in a new issue