1
0
mirror of synced 2024-11-22 21:16:10 +03:00

Merge pull request #2326 from dawnhammond/feature/2084

Fix issue with dropdown menu getting stuck in IE when using multiselect
This commit is contained in:
Kevin Brown 2014-05-05 19:23:36 -04:00
commit c864392ffb

View File

@ -2651,6 +2651,7 @@ the specific language governing permissions and limitations under the Apache Lic
.attr('for', this.search.attr('id')); .attr('for', this.search.attr('id'));
this.search.on("input paste", this.bind(function() { this.search.on("input paste", this.bind(function() {
if (this.search.attr('placeholder') && this.search.val().length == 0) return;
if (!this.isInterfaceEnabled()) return; if (!this.isInterfaceEnabled()) return;
if (!this.opened()) { if (!this.opened()) {
this.open(); this.open();