Explorar o código

Merge pull request #2227 from fabdouglas/patch-6

Ignore focus and error on IE7 for disabled select2
Kevin Brown %!s(int64=10) %!d(string=hai) anos
pai
achega
4645183054
Modificáronse 1 ficheiros con 1 adicións e 2 borrados
  1. 1 2
      select2.js

+ 1 - 2
select2.js

@@ -2674,8 +2674,7 @@ the specific language governing permissions and limitations under the Apache Lic
             this.selection = selection = this.container.find(selector);
 
             var _this = this;
-            this.selection.on("click", ".select2-search-choice:not(.select2-locked)", function (e) {
-                //killEvent(e);
+            this.selection.on("click", ".select2-container:not(.select2-container-disabled) .select2-search-choice:not(.select2-locked)", function (e) {
                 _this.search[0].focus();
                 _this.selectChoice($(this));
             });