Browse Source

a tweak to prevent clicks propagating through the mask on IE9. #1058

Igor Vaynberg 12 years ago
parent
commit
4e7a8b00fc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      select2.js

+ 1 - 1
select2.js

@@ -1219,7 +1219,7 @@ the specific language governing permissions and limitations under the Apache Lic
                 mask.attr("id","select2-drop-mask").attr("class","select2-drop-mask");
                 mask.attr("id","select2-drop-mask").attr("class","select2-drop-mask");
                 mask.hide();
                 mask.hide();
                 mask.appendTo(this.body());
                 mask.appendTo(this.body());
-                mask.on("mousedown touchstart", function (e) {
+                mask.on("mousedown touchstart click", function (e) {
                     var dropdown = $("#select2-drop"), self;
                     var dropdown = $("#select2-drop"), self;
                     if (dropdown.length > 0) {
                     if (dropdown.length > 0) {
                         self=dropdown.data("select2");
                         self=dropdown.data("select2");