Commit e082a5f5aaf928d8ec0b5efeac6c4bd9a5dfd8b8

Authored by Benjamin Renard
1 parent 7dd36700

Hide not fully tested functionalities

js/app/views/PlotComponents/PlotPreviewUI.js
... ... @@ -241,7 +241,7 @@ Ext.define('amdaPlotComp.PlotPreviewUI', {
241 241 ];
242 242 };
243 243  
244   - childrenOfTopToolBar.push(me.createDownloadButton(configResult));
  244 + // childrenOfTopToolBar.push(me.createDownloadButton(configResult)); // #10936 - Not fully tested
245 245  
246 246 var topToolbar =
247 247 {
... ...
js/app/views/PlotTabResultUI.js
... ... @@ -220,10 +220,10 @@ Ext.define('amdaUI.PlotTabResultUI', {
220 220 me.contextualMenu.add('-');
221 221 me.contextualMenu.add(insertIntervalItem);
222 222 }
223   - if (plotFunctionItem != null) {
  223 + /*if (plotFunctionItem != null) { // #9016 & #6018 - Hide - Not fully tested
224 224 me.contextualMenu.insert(0, '-');
225 225 me.contextualMenu.insert(0, plotFunctionItem);
226   - }
  226 + }*/
227 227 },
228 228  
229 229 getAxisValue: function (axis, pixelMin, pixelMax, pixelVal) {
... ...