1
0
mirror of synced 2025-02-04 14:19:23 +03:00

postprocess results always if closeOnSelect is false. fixes #348

This commit is contained in:
Igor Vaynberg 2012-09-18 08:42:23 -07:00
parent f18caa5957
commit a145378848

View File

@ -2023,7 +2023,7 @@
// multi // multi
onSelect: function (data) { onSelect: function (data) {
this.addSelectedChoice(data); this.addSelectedChoice(data);
if (this.select) { this.postprocessResults(); } if (this.select || !this.opts.closeOnSelect) this.postprocessResults();
if (this.opts.closeOnSelect) { if (this.opts.closeOnSelect) {
this.close(); this.close();