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: showOnClick doesn't hide submenu when clicked again

Home Forums Latest release 1.1.x showOnClick doesn't hide submenu when clicked again Reply To: showOnClick doesn't hide submenu when clicked again

#8328
dameer
Participant

OK, got it resolved by replacing the line:

firstLevelSub = $sub ? $sub.dataSM('level') == 2 : false;

…with just:

firstLevelSub = $sub ? $sub.dataSM('level') >= 2 : false;

Cheers!