Commit e41eb7e9 authored by davidstutz's avatar davidstutz

Fixed #422.

parent 5e8fb8e5
...@@ -153,7 +153,7 @@ ...@@ -153,7 +153,7 @@
if (options.length === 0) { if (options.length === 0) {
return this.nonSelectedText; return this.nonSelectedText;
} }
else if (options.length == $('option', $(select)).length) { else if (this.allSelectedText && options.length == $('option', $(select)).length) {
return this.allSelectedText; return this.allSelectedText;
} }
else if (options.length > this.numberDisplayed) { else if (options.length > this.numberDisplayed) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment