#2097: Fix autocomplete for single-term fields
JQuery passes an object as first argument but normal_source function accepts a string instead
This commit is contained in:
@@ -130,7 +130,9 @@
|
|||||||
|
|
||||||
$fields_single.autocomplete({
|
$fields_single.autocomplete({
|
||||||
minLength: 1,
|
minLength: 1,
|
||||||
source: Danbooru.Autocomplete.normal_source
|
source: function(req, resp) {
|
||||||
|
Danbooru.Autocomplete.normal_source(req.term, resp);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
$.merge($fields_multiple, $fields_single).each(function(i, field) {
|
$.merge($fields_multiple, $fields_single).each(function(i, field) {
|
||||||
|
|||||||
Reference in New Issue
Block a user