mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-03-04 19:53:19 +08:00
Merge pull request #3179 from urbanrotnik/ur-sci-5511
Prevent filters close when click on checkbox after input [SCI-5511]
This commit is contained in:
commit
91026857fa
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