Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/elgg_51'
Browse files Browse the repository at this point in the history
# Conflicts:
#	CHANGES.txt
#	elgg-plugin.php
#	views/default/navigation/menu/site.js.php
  • Loading branch information
jdalsem committed Aug 7, 2024
2 parents 8cdc0d8 + 73f762b commit 9be4d1e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Version history
===============

6.2 (2024-08-07):

- added: clicking on iconbar will open first level if submenu opened

7.0 (2024-06-28):

- changed: updated for Elgg 6
Expand Down
8 changes: 8 additions & 0 deletions views/default/navigation/menu/site.mjs.php
Original file line number Diff line number Diff line change
Expand Up @@ -157,3 +157,11 @@ classNames: {
menu.API.close();
});
});

$menu_selector.on('click', '.mm-panels', function(event) {
if (!$(event.target).hasClass('mm-panels')) {
return;
}

menu.API.openPanel($menu_selector.find('#mm-1')[0]);
});

0 comments on commit 9be4d1e

Please sign in to comment.