Remove stray console call.

harvest_experimental
Patrick Filler 2012-02-28 11:05:11 -05:00
parent cd93d92e85
commit f24e7c0913
5 changed files with 2 additions and 5 deletions

View File

@ -131,7 +131,6 @@ Copyright (c) 2011 by Harvest
this.allow_single_deselect = (this.options.allow_single_deselect != null) && (this.form_field.options[0] != null) && this.form_field.options[0].text === "" ? this.options.allow_single_deselect : false;
this.disable_search_threshold = this.options.disable_search_threshold || 0;
this.enable_select_all = (this.options.enable_select_all != null) && this.is_multiple ? this.options.enable_select_all : false;
console.log(this.enable_select_all);
this.choices = 0;
return this.results_none_found = this.options.no_results_text || "No results match";
};

File diff suppressed because one or more lines are too long

View File

@ -131,7 +131,6 @@ Copyright (c) 2011 by Harvest
this.allow_single_deselect = (this.options.allow_single_deselect != null) && (this.form_field.options[0] != null) && this.form_field.options[0].text === "" ? this.options.allow_single_deselect : false;
this.disable_search_threshold = this.options.disable_search_threshold || 0;
this.enable_select_all = (this.options.enable_select_all != null) && this.is_multiple ? this.options.enable_select_all : false;
console.log(this.enable_select_all);
this.choices = 0;
return this.results_none_found = this.options.no_results_text || "No results match";
};

File diff suppressed because one or more lines are too long

View File

@ -31,7 +31,6 @@ class AbstractChosen
@allow_single_deselect = if @options.allow_single_deselect? and @form_field.options[0]? and @form_field.options[0].text is "" then @options.allow_single_deselect else false
@disable_search_threshold = @options.disable_search_threshold || 0
@enable_select_all = if @options.enable_select_all? and @is_multiple then @options.enable_select_all else false
console.log @enable_select_all
@choices = 0
@results_none_found = @options.no_results_text or "No results match"