adding trim to opts.createSearchChoice default function to avoid mismatches with val object
This commit is contained in:
parent
be535c7a77
commit
a469143f01
@ -960,7 +960,7 @@ the specific language governing permissions and limitations under the Apache Lic
|
|||||||
} else if ("tags" in opts) {
|
} else if ("tags" in opts) {
|
||||||
opts.query = tags(opts.tags);
|
opts.query = tags(opts.tags);
|
||||||
if (opts.createSearchChoice === undefined) {
|
if (opts.createSearchChoice === undefined) {
|
||||||
opts.createSearchChoice = function (term) { return {id: term, text: term}; };
|
opts.createSearchChoice = function (term) { return {id: $.trim(term), text: $.trim(term)}; };
|
||||||
}
|
}
|
||||||
if (opts.initSelection === undefined) {
|
if (opts.initSelection === undefined) {
|
||||||
opts.initSelection = function (element, callback) {
|
opts.initSelection = function (element, callback) {
|
||||||
|
Loading…
Reference in New Issue
Block a user