Update field/tag textbox as autocomplete lines are selected
The main effect of this is that Tab now accepts the selected autocomplete entry. Closes #341 and #417
This commit is contained in:
parent
39e7ca7c9e
commit
73686e2423
2 changed files with 2 additions and 0 deletions
|
@ -1453,6 +1453,7 @@
|
|||
t.setAttribute(
|
||||
'autocompletesearchparam', JSON.stringify(params)
|
||||
);
|
||||
t.setAttribute('completeselectedindex', true);
|
||||
}
|
||||
}
|
||||
var box = elem.parentNode;
|
||||
|
|
|
@ -445,6 +445,7 @@
|
|||
t.setAttribute(
|
||||
'autocompletesearchparam', JSON.stringify(params)
|
||||
);
|
||||
t.setAttribute('completeselectedindex', true);
|
||||
}
|
||||
|
||||
var box = elem.parentNode;
|
||||
|
|
Loading…
Reference in a new issue