[IMP] removes the 'expand all' buttons, it was confusing and not really useful (addon web_graph)

bzr revid: ged@openerp.com-20140207142223-pc31xwv7kckt99a0
This commit is contained in:
Gery Debongnie 2014-02-07 15:22:23 +01:00
parent 88b7511f68
commit 817b9bdb7f
2 changed files with 0 additions and 6 deletions

View File

@ -258,9 +258,6 @@ openerp.web_graph.Graph = openerp.web.Widget.extend({
case 'swap_axis':
this.swap_axis();
break;
case 'expand_all':
this.pivot.expand_all().then(this.proxy('display_data'));
break;
case 'update_values':
this.pivot.update_data().then(this.proxy('display_data'));
break;

View File

@ -35,9 +35,6 @@
<label class="btn btn-default" data-choice="swap_axis" title="Swap Axis">
<span class="fa fa-expand"></span>
</label>
<label class="btn btn-default" data-choice="expand_all" title="Expand All">
<span class="fa fa-arrows-alt"></span>
</label>
<label class="btn btn-default" data-choice="update_values" title="Reload Data">
<span class="fa fa-refresh"></span>
</label>