Fix down arrow triggering menu in search box

fixes #3491
pull/3507/head
Steve-Mcl 2022-03-24 11:28:24 +00:00
parent cb88409102
commit 5e197713ff
1 changed files with 2 additions and 2 deletions

View File

@ -105,8 +105,8 @@
}
});
this.element.on("keydown",function(e) {
if (!menuShown && e.keyCode === 40) {
//DOWN
if (!menuShown && e.keyCode === 40 && $(this).val() === '') {
//DOWN (only show menu if search field is emty)
showMenu();
}
});