Browse Source

Made web_widget_color installable and remove the search field.

The search field doesn't seem to exist anymore
pull/429/head
Loïc Faure-Lacroix 9 years ago
committed by Stéphane Bidoul (ACSONE)
parent
commit
a858942e8f
  1. 2
      web_widget_color/__openerp__.py
  2. 2
      web_widget_color/static/src/js/widget.js

2
web_widget_color/__openerp__.py

@ -39,6 +39,6 @@
'static/src/xml/widget.xml',
],
'auto_install': False,
'installable': False,
'installable': True,
'web_preload': True,
}

2
web_widget_color/static/src/js/widget.js

@ -11,8 +11,6 @@ openerp.web_widget_color = function (instance) {
instance.web.form.widgets.add('color', 'instance.web.form.FieldColor');
instance.web.search.fields.add('color', 'instance.web.search.CharField');
instance.web.form.FieldColor = instance.web.form.FieldChar.extend({
template: 'FieldColor',
widget_class: 'oe_form_field_color',

Loading…
Cancel
Save