Commit 46c5751eeb2c0939163417f84004e75d88946c12

Authored by Benjamin Renard
1 parent b0a1c31b

Cleanup

js/app/controllers/PlotModule.js
... ... @@ -90,7 +90,6 @@ Ext.define('amdaDesktop.PlotModule', {
90 90 plotFile : tabResult.plot,
91 91 context : tabResult.context,
92 92 tabId : tabResult.id,
93   - multiplot : tabResult.multiplot,
94 93 isInterval: tabResult.isInterval,
95 94 ttName : tabResult.ttName,
96 95 ttIndex : tabResult.ttIndex,
... ...
js/app/views/PlotComponents/PlotTree.js
... ... @@ -18,7 +18,6 @@ Ext.define('amdaPlotComp.PlotTree', {
18 18 //Link to the combo box to define the use of the simplified view
19 19 simplifiedViewCombo : null,
20 20  
21   - //Link to the combo to attach the tab to the multi plot mode
22 21  
23 22 //Link to the Plot Element Panel
24 23 plotElementPanel: null,
... ...
php/classes/AmdaAction.php
... ... @@ -1437,11 +1437,10 @@ class AmdaAction
1437 1437 return array('success' => true);
1438 1438 }
1439 1439  
1440   - public function interactivePlot($obj, $multiPlotState)
  1440 + public function interactivePlot($obj)
1441 1441 {
1442 1442 $inputobj = (Object)array(
1443 1443 'action' => $obj,
1444   - 'multiPlotState' => $multiPlotState
1445 1444 );
1446 1445 return $this->executeRequest($inputobj, FunctionTypeEnumClass::ACTION);
1447 1446 }
... ...