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:
rohitgs28 2025-03-14 14:32:59 -04:00
parent 9901949c71
commit 61dcf20a38

View file

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