Hide suggestions when deleting all input value using other than backspace
This commit is contained in:
parent
07a0278d63
commit
d5b4b4e030
1 changed files with 6 additions and 2 deletions
|
@ -173,8 +173,12 @@ class @SearchAutocomplete
|
|||
@restoreOriginalState()
|
||||
|
||||
else
|
||||
# We should display the menu only when input is not empty
|
||||
if @searchInput.val() isnt ''
|
||||
# Handle the case when deleting the input value other than backspace
|
||||
# e.g. Pressing ctrl + backspace or ctrl + x
|
||||
if @searchInput.val() is ''
|
||||
@disableAutocomplete()
|
||||
else
|
||||
# We should display the menu only when input is not empty
|
||||
@enableAutocomplete()
|
||||
|
||||
# Avoid falsy value to be returned
|
||||
|
|
Loading…
Reference in a new issue