Browse Source
Merge pull request #19775 from abpframework/auto-merge/prerel-8-2/2700
Merge branch dev with prerel-8.2
halil-presentation-2024-05
maliming
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
0 deletions
-
modules/basic-theme/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Basic/wwwroot/themes/basic/layout.js
|
|
@ -1,5 +1,7 @@ |
|
|
$(function () { |
|
|
$(function () { |
|
|
$('.dropdown-menu a.dropdown-toggle').on('click', function (e) { |
|
|
$('.dropdown-menu a.dropdown-toggle').on('click', function (e) { |
|
|
|
|
|
$(this).next().toggleClass('show'); |
|
|
|
|
|
|
|
|
if (!$(this).next().hasClass('show')) { |
|
|
if (!$(this).next().hasClass('show')) { |
|
|
$(this).parents('.dropdown-menu').first().find('.show').removeClass("show"); |
|
|
$(this).parents('.dropdown-menu').first().find('.show').removeClass("show"); |
|
|
} |
|
|
} |
|
|
|