[FIX] correctly calls the parent of the graph view in the constructor (now, the view...
authorGery Debongnie <ged@openerp.com>
Thu, 26 Dec 2013 16:14:57 +0000 (17:14 +0100)
committerGery Debongnie <ged@openerp.com>
Thu, 26 Dec 2013 16:14:57 +0000 (17:14 +0100)
bzr revid: ged@openerp.com-20131226161457-a4k3iflz61fiaqj4

addons/web_graph/static/src/js/graph.js

index b56a2cd..9806e70 100644 (file)
@@ -18,7 +18,7 @@ instance.web_graph.GraphView = instance.web.View.extend({
     view_type: 'graph',
 
     init: function(parent, dataset, view_id, options) {
-        this._super(parent);
+        this._super(parent, dataset, view_id, options);
         this.dataset = dataset;
         this.model = new instance.web.Model(dataset.model, {group_by_no_leaf: true});
         this.search_view = parent.searchview;