From 3b9840e3ff282dc121210aec8dc84004fdefe50e Mon Sep 17 00:00:00 2001 From: Igor Vaynberg Date: Fri, 27 Apr 2012 22:28:20 -0700 Subject: [PATCH] remove debugging statement --- select2.js | 1 - 1 file changed, 1 deletion(-) 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) {