diff options
author | Marvin Borner | 2021-01-13 16:22:12 +0100 |
---|---|---|
committer | Marvin Borner | 2021-01-13 16:22:12 +0100 |
commit | ccc389d265af146a5cf38f16bd473443a453239f (patch) | |
tree | f3be3d94df2c4bec011e3f9e33c56f13e4645ccc /profile/public/user.js | |
parent | bc57a7bdf55fec6f35f31afdc5feb9cbca6cd459 (diff) |
FRONTEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEND
Diffstat (limited to 'profile/public/user.js')
-rw-r--r-- | profile/public/user.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/profile/public/user.js b/profile/public/user.js index 1f93891..76aedc8 100644 --- a/profile/public/user.js +++ b/profile/public/user.js @@ -22,6 +22,8 @@ function addUser(userData) { qDivs.forEach( (div) => (div.style.display = !div.style.display || div.style.display === "block" ? "none" : "block"), ); + if (h1.classList.contains("bananenkuchen")) h1.classList.remove("bananenkuchen"); + else h1.classList.add("bananenkuchen"); }); userDiv.append(h1, ...divs); } @@ -34,6 +36,8 @@ async function addComments(comments) { qDivs.forEach( (div) => (div.style.display = !div.style.display || div.style.display === "flex" ? "none" : "flex"), ); + if (h2.classList.contains("bananenkuchen")) h2.classList.remove("bananenkuchen"); + else h2.classList.add("bananenkuchen"); }); const divs = []; for (const comment of comments) { |