🐛 Fixed hoisting issue by adding let
Jenkins Production Deployment Details

This commit is contained in:
liza-kl 2021-10-20 12:21:49 +02:00
parent ff99a7a78e
commit 12af6d3ed4
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ const toggleDarkMode = () => {
/* Dialog */
let modalContents = document.getElementsByClassName('modal-toggle')
for (content of modalContents) {
for (let content of modalContents) {
content.classList.toggle("modal--dark-mode")
}