From 42f2acd0aa004854edb3a933935a20ba3a295c3b Mon Sep 17 00:00:00 2001 From: Marc Schneider Date: Mon, 21 Apr 2014 00:18:19 +0200 Subject: [PATCH] Query term in tags function in select2 3.4 #2141 --- select2.js | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/select2.js b/select2.js index ea175cf7..a8e2cf9f 100644 --- a/select2.js +++ b/select2.js @@ -538,14 +538,17 @@ the specific language governing permissions and limitations under the Apache Lic var isFunc = $.isFunction(data); return function (query) { var t = query.term, filtered = {results: []}; - $(isFunc ? data() : data).each(function () { - var isObject = this.text !== undefined, - text = isObject ? this.text : this; - if (t === "" || query.matcher(t, text)) { - filtered.results.push(isObject ? this : {id: this, text: this}); - } - }); - query.callback(filtered); + var result = $(isFunc ? data(query) : data); + if ($.isArray(result)) { + $(isFunc ? data() : data).each(function () { + var isObject = this.text !== undefined, + text = isObject ? this.text : this; + if (t === "" || query.matcher(t, text)) { + filtered.results.push(isObject ? this : {id: this, text: this}); + } + }); + query.callback(filtered); + } }; }