From 4e7a8b00fc98e02019a87e1b78afb1f5d72fc5d7 Mon Sep 17 00:00:00 2001 From: Igor Vaynberg Date: Tue, 4 Jun 2013 08:33:02 -0700 Subject: [PATCH] a tweak to prevent clicks propagating through the mask on IE9. #1058 --- select2.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/select2.js b/select2.js index 3ebd2653..6b03c579 100644 --- a/select2.js +++ b/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.hide(); mask.appendTo(this.body()); - mask.on("mousedown touchstart", function (e) { + mask.on("mousedown touchstart click", function (e) { var dropdown = $("#select2-drop"), self; if (dropdown.length > 0) { self=dropdown.data("select2");