From 61dcf20a38d6ed1cca0a491c4da69ac4fe9fa431 Mon Sep 17 00:00:00 2001 From: rohitgs28 Date: Fri, 14 Mar 2025 14:32:59 -0400 Subject: [PATCH] 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. --- src/overlay.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/overlay.js b/src/overlay.js index a0712096..90bda0b7 100644 --- a/src/overlay.js +++ b/src/overlay.js @@ -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;