Prechádzať zdrojové kódy

remove debugging statement

Igor Vaynberg 13 rokov pred
rodič
commit
3b9840e3ff
1 zmenil súbory, kde vykonal 0 pridanie a 1 odobranie
  1. 0 1
      select2.js

+ 0 - 1
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) {