[FIX] adds a missing semicolon... :/ (addon web_graph)

bzr revid: ged@openerp.com-20140226144032-st0eqbkzco8n2unk
This commit is contained in:
Gery Debongnie 2014-02-26 15:40:32 +01:00
parent b453252c2d
commit a37f96d043
1 changed files with 1 additions and 1 deletions

View File

@ -376,7 +376,7 @@ openerp.web_graph.Graph = openerp.web.Widget.extend({
this.$('.graph_main_content svg').remove();
this.$('.graph_main_content div').remove();
this.table.empty();
this.table.toggleClass('heatmap', this.heatmap_mode !== 'none')
this.table.toggleClass('heatmap', this.heatmap_mode !== 'none');
this.width = this.$el.width();
this.height = Math.min(Math.max(document.documentElement.clientHeight - 116 - 60, 250), Math.round(0.8*this.$el.width()));