summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--jquery.multiple.select.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/jquery.multiple.select.js b/jquery.multiple.select.js
index 63188cb..de1715c 100644
--- a/jquery.multiple.select.js
+++ b/jquery.multiple.select.js
@@ -215,6 +215,11 @@
this.options.isOpen = true;
this.$choice.find('>div').addClass('open');
this.$drop.show();
+
+ // fix filter bug: no results show
+ this.$selectAll.parent().show();
+ this.$noResults.hide();
+
if (this.options.container) {
var offset = this.$drop.offset();
this.$drop.appendTo($(this.options.container));