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

js.sidebar.js Maven / Gradle / Ivy

There is a newer version: 3.0.0-M1-bin-20201029-1f433d5-NIGHTLY
Show newest version
// 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