Skip to content

Commit

Permalink
remove console log faq-accordion
Browse files Browse the repository at this point in the history
  • Loading branch information
JadlionHD committed Mar 7, 2024
1 parent 5472d42 commit 13a6079
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion faq-accordion/assets/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ for (let i = 0; i < accList.length; i++) {
const acc = accList[i];

acc.addEventListener("click", (_ev) => {
console.log("clicked");
acc.classList.toggle("active");
acc.nextElementSibling.style.display === "block"
? (acc.nextElementSibling.style.display = "none")
Expand Down

0 comments on commit 13a6079

Please sign in to comment.