Explorar el Código

remove debugging statement

Igor Vaynberg hace 13 años
padre
commit
3b9840e3ff
Se han modificado 1 ficheros con 0 adiciones y 1 borrados
  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) {