| 1 |
;(function ($) { |
| 2 |
|
| 3 |
$(document).ready(function () { |
| 4 |
|
| 5 |
// Toggle dropdown |
| 6 |
$('.forumax-sort-lists button').on('click', function (e) { |
| 7 |
e.stopPropagation(); // prevent document click |
| 8 |
|
| 9 |
const $currentMenu = $(this).siblings('.dropdown-menu'); |
| 10 |
|
| 11 |
// Close all others |
| 12 |
$('.forumax-sort-lists .dropdown-menu').not($currentMenu).removeClass('show'); |
| 13 |
|
| 14 |
// Toggle current |
| 15 |
$currentMenu.toggleClass('show'); |
| 16 |
}); |
| 17 |
|
| 18 |
// Allow clicks inside dropdown (including links) |
| 19 |
$('.forumax-sort-lists .dropdown-menu').on('click', function (e) { |
| 20 |
// Only prevent propagation if not clicking a link |
| 21 |
if (!$(e.target).is('a')) { |
| 22 |
e.stopPropagation(); |
| 23 |
} |
| 24 |
}); |
| 25 |
|
| 26 |
// Click outside → close all dropdowns |
| 27 |
$(document).on('click', function () { |
| 28 |
$('.forumax-sort-lists .dropdown-menu').removeClass('show'); |
| 29 |
}); |
| 30 |
|
| 31 |
}); |
| 32 |
|
| 33 |
})(jQuery); |
| 34 |
|
| 35 |
|