Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save AmrAbdeen/500229103c086cdf5a88 to your computer and use it in GitHub Desktop.
Save AmrAbdeen/500229103c086cdf5a88 to your computer and use it in GitHub Desktop.
Default Apex 5 Main Navigation to Closed/Collapsed
Please include the following block of code on all pages in which you want the navbar to always start collapsed by default:
$(window).on("theme42ready", function() {
if ($("body").hasClass("js-navExpanded")) {
$("#t_Button_navControl").click();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment