From 52c0c00d3139c6e3127e2e982753733416255641 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Mon, 26 May 2025 07:01:47 +0200 Subject: [PATCH] Fix indentation and formatting in animeCat.js --- animeCat.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/animeCat.js b/animeCat.js index 4ef0618..6805d03 100644 --- a/animeCat.js +++ b/animeCat.js @@ -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);