1
0

Fix indentation and formatting in animeCat.js

This commit is contained in:
2025-05-26 07:01:47 +02:00
parent 1ffb6ec748
commit 52c0c00d31

View File

@@ -114,12 +114,12 @@ window.AnimeCat = class AnimeCat {
});
this.bubble.appendChild(this.bubblePointer);
// --- Zusammenbauen ---
// --- Zusammenbauen ---
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.glow = document.createElement('div');
this.glow.id = 'cat-glow';
this.wrapper.insertBefore(this.glow, this.img); // vor das Bild
}
this.wrapper.appendChild(this.img);
this.wrapper.appendChild(this.bubble);
this.container.appendChild(this.wrapper);