diff --git a/select2.js b/select2.js index c8e854cc..70bf0675 100755 --- a/select2.js +++ b/select2.js @@ -297,7 +297,6 @@ return function (query) { var t = query.term.toUpperCase(), filtered = {results: []}; $(data).each(function () { - console.log(this); var isObject = "text" in this, text = isObject ? this.text : this; if (t === "" || text.toUpperCase().indexOf(t) >= 0) {