From 23e6ed0c5afc4463fbd939e496cd1f21e37f8010 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Mon, 26 May 2025 07:02:47 +0200 Subject: [PATCH] Fix glow insertion order in animeCat.js --- animeCat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/animeCat.js b/animeCat.js index 9bb6b7b..5145f2d 100644 --- a/animeCat.js +++ b/animeCat.js @@ -111,7 +111,7 @@ window.AnimeCat = class AnimeCat { if (!this.wrapper.querySelector('#cat-glow')) { this.glow = document.createElement('div'); this.glow.id = 'cat-glow'; - this.wrapper.insertBefore(this.glow, this.img); // vor das Bild + this.wrapper.insertBefore(this.glow, this.img); } this.wrapper.appendChild(this.img); this.wrapper.appendChild(this.bubble);