Revert "not explode on empty selects with allow_single_deselect"

This reverts commit 91502810c9.
master
Jerrett 2011-11-14 16:19:41 -08:00
parent acf540ff21
commit 5d0e5855c7
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@
this.results_showing = false;
this.result_highlighted = null;
this.result_single_selected = null;
this.allow_single_deselect = (this.options.allow_single_deselect != null) && this.form_field.options[0] && this.form_field.options[0].text === "" ? this.options.allow_single_deselect : false;
this.allow_single_deselect = (this.options.allow_single_deselect != null) && this.form_field.options[0].text === "" ? this.options.allow_single_deselect : false;
this.disable_search_threshold = this.options.disable_search_threshold || 0;
this.choices = 0;
return this.results_none_found = this.options.no_results_text || "No results match";