short headers, bump up version number

This commit is contained in:
Alexandre Fayolle
2016-08-09 09:47:43 +02:00
committed by Pedro M. Baeza
parent 2b5d7e83e3
commit ff4d9d225e
5 changed files with 16 additions and 64 deletions

View File

@@ -57,11 +57,11 @@ odoo.define('web.web_widget_color', function(require) {
if (!this.get("effective_readonly")) {
var $input = this.$el.find('input');
$input.val(show_value);
$input.css("background-color", show_value)
$input.css("background-color", show_value);
jscolor.init(this.$el[0]);
} else {
this.$(".oe_form_char_content").text(show_value);
this.$('div').css("background-color", show_value)
this.$('div').css("background-color", show_value);
}
}
});