3
0
Fork 0

[FIX] pylint

11.0
Stéphane Bidoul (ACSONE) 2016-09-28 13:50:27 +02:00 committed by Enric Tobella
parent c150bdc70b
commit 544a6c8e93
No known key found for this signature in database
GPG Key ID: 1A2546A1B7BA2451
3 changed files with 12 additions and 13 deletions

View File

@ -21,6 +21,7 @@
'qweb': [
'static/src/xml/widget.xml',
],
'license': 'AGPL-3',
'auto_install': False,
'installable': True,
'web_preload': True,

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);
}
}
});

View File

@ -1,6 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<openerp>
<data>
<odoo>
<template id="assets_backend" name="web_widget_color assets" inherit_id="web.assets_backend">
<xpath expr="." position="inside">
<link rel="stylesheet" href="/web_widget_color/static/src/css/widget.css"/>
@ -8,5 +7,4 @@
<script type="text/javascript" src="/web_widget_color/static/src/js/widget.js"></script>
</xpath>
</template>
</data>
</openerp>
</odoo>