mirror of https://github.com/OCA/web.git
Merge pull request #1141 from Tecnativa/12.0-fix-issue-1139-web_widget_color
web_widget_color: Fix issue #1139pull/1144/head
commit
02c00e2875
|
@ -16,7 +16,7 @@ odoo.define('web.web_widget_color', function(require) {
|
||||||
|
|
||||||
_renderEdit: function() {
|
_renderEdit: function() {
|
||||||
this.$input = this.$el.find('input');
|
this.$input = this.$el.find('input');
|
||||||
this.jscolor = new jscolor(this.$input[0], {hash:true});
|
this.jscolor = new jscolor(this.$input[0], {hash:true, zIndex: 2000});
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
field_registry.add('color', FieldColor);
|
field_registry.add('color', FieldColor);
|
||||||
|
|
Loading…
Reference in New Issue