Hide suggestions when deleting all input value using other than backspace

This commit is contained in:
Alfredo Sumaran 2016-03-27 13:52:42 -05:00
parent 07a0278d63
commit d5b4b4e030

View file

@ -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