From 6bb3e3f8b0c87da5baae86598186d18a1c700396 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Mon, 26 May 2025 07:02:34 +0200 Subject: [PATCH] Remove unused glow element creation in animeCat.js --- animeCat.js | 7 ------- 1 file changed, 7 deletions(-) diff --git a/animeCat.js b/animeCat.js index 6805d03..9bb6b7b 100644 --- a/animeCat.js +++ b/animeCat.js @@ -49,13 +49,6 @@ window.AnimeCat = class AnimeCat { zIndex: '1' }); - // --- Glow --- - if (!this.wrapper.querySelector('#cat-glow')) { - this.glow = document.createElement('div'); - this.glow.id = 'cat-glow'; - this.wrapper.appendChild(this.glow); - } - this.img = document.createElement('img'); this.img.src = this.images.default;