[FIX] terminate statements missing semicolons
authorXavier Morel <xmo@openerp.com>
Fri, 17 Jun 2011 09:13:35 +0000 (11:13 +0200)
committerXavier Morel <xmo@openerp.com>
Fri, 17 Jun 2011 09:13:35 +0000 (11:13 +0200)
bzr revid: xmo@openerp.com-20110617091335-r9k07mr5m5lp9f0o

addons/base_graph/static/src/js/graph.js

index e1805f2..719ef55 100644 (file)
@@ -104,7 +104,7 @@ openerp.base_graph.GraphView = openerp.base.Controller.extend({
             for (var i in result){
                 var gen_key = result[i][this.chart_info_fields]+"_"+result[i][this.group_field];
                 if (this.opration_fld[gen_key] == undefined){
-                    var map_val = {}
+                    var map_val = {};
                     map_val[this.operator_field] = result[i][this.operator_field];
                     if (this.operator.length > 1){
                         map_val[this.operator_field_one] = result[i][this.operator_field_one];
@@ -123,7 +123,7 @@ openerp.base_graph.GraphView = openerp.base.Controller.extend({
                     this.opration_fld[gen_key] = map_val;
                 }
             }
-            result = []
+            result = [];
             for (i in this.opration_fld){
                 result.push(this.opration_fld[i]);
             }