Commit 7070cc5f authored by SeeBeyond's avatar SeeBeyond

Fix broken foreach

parent 07cd0f92
...@@ -4,5 +4,7 @@ function $(item) { ...@@ -4,5 +4,7 @@ function $(item) {
window.onload = () => { window.onload = () => {
// Shorten board heights // Shorten board heights
$(".board .h-100").forEach(el => el.classList.remove("h-100")); for (let element of $(".board[data-id]")) {
element.classList.remove("h-100");
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment