|
@ -11,9 +11,9 @@ odoo.define('web_widget_bokeh_chart', function (require) { |
|
|
var BokehChartWidget = form_common.AbstractField.extend({ |
|
|
var BokehChartWidget = form_common.AbstractField.extend({ |
|
|
render_value: function() { |
|
|
render_value: function() { |
|
|
var self = this; |
|
|
var self = this; |
|
|
var val = this.get('value') |
|
|
|
|
|
this.$el.html(val) |
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
var val = this.get('value'); |
|
|
|
|
|
this.$el.html(val); |
|
|
|
|
|
} |
|
|
}); |
|
|
}); |
|
|
core.form_widget_registry.add('bokeh_chart', BokehChartWidget); |
|
|
core.form_widget_registry.add('bokeh_chart', BokehChartWidget); |
|
|
}); |
|
|
}); |