Commit f0f8cfe5 by xcoder

Add fix for open close mobile arrow

1 parent a0fcd62a
Showing 1 changed file with 8 additions and 0 deletions
......@@ -124,6 +124,14 @@ function switchLang(lang, platform) {
dropdownMenuMobile.classList.remove("show");
}
}
if (platform === "mobile") {
const mobArrow = document.querySelector(".chevron.mobile");
if (mobArrow != null) {
mobArrow.classList.toggle("rotated");
}
}
}
function set_current_year() {
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!