소스 검색

remove debugging statement

Igor Vaynberg 13 년 전
부모
커밋
3b9840e3ff
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  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) {