Adujst search_more option to accept True or true values.

pull/120/head
ecino 2015-04-17 14:58:55 +02:00 committed by Emanuel Cino
parent ea18922466
commit da0d67ae8e
1 changed files with 7 additions and 5 deletions

View File

@ -63,8 +63,10 @@ openerp.web_m2x_options = function (instance) {
} }
// add options search_more to force enable or disable search_more button // add options search_more to force enable or disable search_more button
if(typeof this.options.search_more === 'boolean') { var search_more_defined = !_.isUndefined(this.options.search_more)
this.search_more = this.options.search_more if((search_more_defined && this.options.search_more.toLowerCase() === "true") ||
!(search_more_defined && this.options.search_more.toLowerCase() === "false") && (self.view.ir_options['web_m2x_options.search_more'] === "True")) {
this.search_more = true
} }
// add options field_color and colors to color item(s) depending on field_color value // add options field_color and colors to color item(s) depending on field_color value