From 8d7f341e97d12234d7c0c2da37ebb52e98b5c7d3 Mon Sep 17 00:00:00 2001 From: lreficent Date: Wed, 6 Sep 2017 15:00:55 +0200 Subject: [PATCH] travis --- web_widget_bokeh_chart/__openerp__.py | 2 +- .../static/src/js/web_widget_bokeh_chart.js | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/web_widget_bokeh_chart/__openerp__.py b/web_widget_bokeh_chart/__openerp__.py index 772d72c4..3adab4aa 100644 --- a/web_widget_bokeh_chart/__openerp__.py +++ b/web_widget_bokeh_chart/__openerp__.py @@ -7,7 +7,7 @@ "category": "Hidden", "summary": "This widget allows to display charts using Bokeh library.", "author": "Eficent, " - "Odoo Community Association (OCA)", + "Odoo Community Association (OCA)", "version": "9.0.1.0.0", "website": "https://github.com/OCA/web", "depends": ["web"], diff --git a/web_widget_bokeh_chart/static/src/js/web_widget_bokeh_chart.js b/web_widget_bokeh_chart/static/src/js/web_widget_bokeh_chart.js index 92f04ccb..d9877f27 100644 --- a/web_widget_bokeh_chart/static/src/js/web_widget_bokeh_chart.js +++ b/web_widget_bokeh_chart/static/src/js/web_widget_bokeh_chart.js @@ -11,9 +11,9 @@ odoo.define('web_widget_bokeh_chart', function (require) { var BokehChartWidget = form_common.AbstractField.extend({ render_value: function() { 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); });