2
0
mirror of https://github.com/devbridge/jQuery-Autocomplete.git synced 2024-09-19 08:49:01 +00:00

Merge pull request #597 from ErikSchierboom/patch-2

Fix typo in src/jquery.autocomplete.js
This commit is contained in:
Tomas Kirda 2017-03-21 08:37:35 -05:00 committed by GitHub
commit 44ad25665f

View File

@ -134,7 +134,7 @@
};
function _formatResult(suggestion, currentValue) {
// Do not replace anything if there current value is empty
// Do not replace anything if the current value is empty
if (!currentValue) {
return suggestion.value;
}