2
0
mirror of https://github.com/devbridge/jQuery-Autocomplete.git synced 2024-11-25 22:27:39 +00:00

Keep s,d in correct scope

This commit is contained in:
Lane Roberts 2012-09-05 10:33:16 -05:00
parent f6babc4d46
commit 2853cf689e

View File

@ -362,8 +362,8 @@
var selectedValue, fn, me;
me = this;
selectedValue = this.suggestions[i];
var s, d;
if (selectedValue) {
var s, d;
s = me.suggestions[i];
d = me.data[i];
me.el.val(me.getValue(s));