Browse Source

Merge pull request #19774 from abpframework/auto-merge/rel-8-1/2699

Merge branch prerel-8.2 with rel-8.1
pull/19775/head
maliming 2 years ago
committed by GitHub
parent
commit
473fae90a7
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      modules/basic-theme/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic/wwwroot/themes/basic/layout.js

2
modules/basic-theme/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic/wwwroot/themes/basic/layout.js

@ -1,5 +1,7 @@
$(function () {
$('.dropdown-menu a.dropdown-toggle').on('click', function (e) {
$(this).next().toggleClass('show');
if (!$(this).next().hasClass('show')) {
$(this).parents('.dropdown-menu').first().find('.show').removeClass("show");
}

Loading…
Cancel
Save