You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 29, 2019. It is now read-only.
Hi,
I have following input with typeahead <input type="text" ng-model="drug" typeahead-min-length="2" typeahead-loading="isLoading" ng-class="{loading: isLoading}" typeahead="drugItem as drugItem.english_name for drugItem in getDrugItems($viewValue)">
When I remove all characters in input quickly, isLoading will remain true.
I tweak typeahead javascript code I buy following changes the problem is solved:
typeahead.js line 151-164 original:
Thnx for the clear bug report @a70babat it is fixed in master now! If only half of all the bug reports would look like this GitHub would be a better place... And hey, by all means learn about git / GitHub so you can contribute by sending pull requests :-)
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi,
I have following input with typeahead
<input type="text" ng-model="drug" typeahead-min-length="2" typeahead-loading="isLoading" ng-class="{loading: isLoading}" typeahead="drugItem as drugItem.english_name for drugItem in getDrugItems($viewValue)">
When I remove all characters in input quickly,
isLoading
will remain true.I tweak typeahead javascript code I buy following changes the problem is solved:
typeahead.js line 151-164 original:
last 3 lines should changed to:
I'm not familiar on how to contribute to a git repository, but I hope the explanation be clear.
The text was updated successfully, but these errors were encountered: