Commit 670f5bbf authored by Ivica Puljic's avatar Ivica Puljic Committed by Ivica Puljic
Browse files

Issue #3311791 by pivica: Prevent sidebar dropdown hiding only for menu items

parent 4a4cb4b9
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -396,9 +396,10 @@
  });

  $(document).on('hide.bs.dropdown', function (e) {
    // Don't hide dropdown which is in sidebar navigation. This will prevent
    // hiding open submenus in sidebar navigation.
    if (Drupal.bs_bootstrap.navbar.isNavbarCollapseShow($(e.target))) {
    // Don't hide dropdown navigation menus which are in sidebar navigation.
    // This will prevent hiding open submenus in sidebar navigation when we want
    // to open a new sub navigation - the rest will stay open.
    if (e.target.classList.contains('nav-item') && Drupal.bs_bootstrap.navbar.isNavbarCollapseShow($(e.target))) {
      e.preventDefault();
    }
  });