This commit is contained in:
p-wojt
2022-01-11 23:29:13 +01:00
parent 1ab05d1292
commit 3707a32c94
4 changed files with 35 additions and 9 deletions

View File

@@ -291,3 +291,9 @@ function beginAnimateRoulette() {
animateWinner();
}
}
const footerEl = document.querySelector('footer')!;
const authorsEl = document.getElementsByClassName('icons-authors')[0]! as HTMLDivElement;
footerEl.addEventListener('click', () => {
authorsEl.hidden = !authorsEl.hidden;
});