Fix glow insertion order in animeCat.js
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user