diff --git a/bower.json b/bower.json index 9a22de26..d3f09c28 100644 --- a/bower.json +++ b/bower.json @@ -1,8 +1,8 @@ { - "name": "bootstrap-multiselect", + "name": "uofa-bootstrap-multiselect", "description": "Twitter Bootstrap plugin to make selects user friendly.", "homepage": "http://davidstutz.github.io/bootstrap-multiselect/", - "version": "0.9.13", + "version": "0.9.14", "keywords": [ "js", "css", diff --git a/dist/js/bootstrap-multiselect.js b/dist/js/bootstrap-multiselect.js index 5fb4c18c..28c0fbbc 100644 --- a/dist/js/bootstrap-multiselect.js +++ b/dist/js/bootstrap-multiselect.js @@ -543,6 +543,13 @@ var $target = $(event.target); + if($('.ie8').length > 0){ + event.preventDefault(); + $target = $target.find("input"); + $target.prop("checked", !$target.prop("checked")); + $target.click(); + } + if (event.shiftKey && this.options.multiple) { if($target.is("label")){ // Handles checkbox selection manually (see https://github.com/davidstutz/bootstrap-multiselect/issues/431) event.preventDefault();