Start a new discussion

To start a new discussion please visit the discussions section of the GitHub home page of the project.

Discussions on GitHub

You can also search our old self-hosted forums for any useful information below but please note that posting new content here is not possible any more.

Reply To: Vertical menu expanded on page load

Home Forums Older releases 0.9.x Vertical menu expanded on page load Reply To: Vertical menu expanded on page load

#2629
admin
Keymaster

Yep, replace the following:

  $('#menu-btn').click(function() {
    var $this = $(this),
        $menu = $('#main-menu');
    if (!$this.hasClass('collapsed')) {
      $menu.addClass('collapsed');
      $this.addClass('collapsed');
    } else {
      $menu.removeClass('collapsed');
      $this.removeClass('collapsed');
    }
    return false;
  }).click();

with the following:

  $('#menu-btn').click(function() {
    var $this = $(this),
        $menu = $('#main-menu');
    if (!$this.hasClass('collapsed')) {
      $menu.addClass('collapsed');
      $this.addClass('collapsed');
    } else {
      $menu.removeClass('collapsed');
      $this.removeClass('collapsed');
      $("#main-menu").smartmenus("itemActivate",$("#main-menu").find("a.current").eq(-1));
    }
    return false;
  }).click();

Cheers!