mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-03-04 19:53:19 +08:00
Prevent filters close when click on checkbox after input
SCI-5511
This commit is contained in:
parent
51a5a835ae
commit
757bed3cbf
1 changed files with 4 additions and 0 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue