Prevent filters close when click on checkbox after input

SCI-5511
This commit is contained in:
Urban Rotnik 2021-02-22 10:50:03 +01:00
parent 51a5a835ae
commit 757bed3cbf

View file

@ -58,6 +58,10 @@ var filterDropdown = (function() {
$(this).closest('.dropdown').removeClass('open');
});
$textFilter.on('focusout', function() {
$filterContainer.trigger('filter:clickBody');
});
$filterContainer.on('click', '.projects-search-keyword', function(e) {
e.stopPropagation();
e.preventDefault();