All Downloads are FREE. Search and download functionalities are using the official Maven repository.

js.sidebar.js Maven / Gradle / Ivy

// Toggles a sidebar section
function toggleSection(titleElement) {
  const title = $(titleElement);
  title.siblings("ul").toggleClass("toggled");
  title.children("i.fas").toggleClass("fa-angle-right").toggleClass("fa-angle-down");
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy