Skip to content

Commit

Permalink
Fixes #2824, messages should always be removed on show unless message…
Browse files Browse the repository at this point in the history
… is max selection
  • Loading branch information
jlukic committed Aug 11, 2015
1 parent 7a93ac2 commit c9a26af
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/definitions/modules/dropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -411,6 +411,9 @@ $.fn.dropdown = function(parameters) {
return true;
}
}
if(module.has.message() && !module.has.maxSelections()) {
module.remove.message();
}
module.animate.show(function() {
if( module.can.click() ) {
module.bind.intent();
Expand Down

0 comments on commit c9a26af

Please sign in to comment.