1
0

Remove unused glow element creation in animeCat.js

This commit is contained in:
2025-05-26 07:02:34 +02:00
parent 52c0c00d31
commit 6bb3e3f8b0

View File

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