1
0

Fix glow insertion order in animeCat.js

This commit is contained in:
2025-05-26 07:02:47 +02:00
parent 6bb3e3f8b0
commit 23e6ed0c5a

View File

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