Commit 6586e8e06f447e57b7caf1fefdf11e3ddd9dcfb9

Authored by Elena.Budnik
1 parent 3aab6027

Prefered => Preferred

Showing 1 changed file with 4 additions and 4 deletions   Show diff stats
js/app/views/PlotComponents/PlotPanelForm.js
... ... @@ -49,7 +49,7 @@ Ext.define('amdaPlotComp.PlotPanelForm', {
49 49  
50 50 //Instant time visibility
51 51 var instantTimeField = this.getForm().findField('panel-instant-time');
52   -
  52 + console.log(this.up().up().up().up());
53 53 instantTimeField.setVisible(plotType == 'instantPlot');
54 54  
55 55 //Options in relation with the layout
... ... @@ -91,8 +91,8 @@ Ext.define('amdaPlotComp.PlotPanelForm', {
91 91 ];
92 92  
93 93 var preferedDimItems = [
94   - this.addStandardFloat('panel-prefered-width', 'Prefered Width', 0, 1, true),
95   - this.addStandardFloat('panel-prefered-height', 'Prefered Height', 0, 1, true)
  94 + this.addStandardFloat('panel-prefered-width', 'Preferred Width', 0, 1, true),
  95 + this.addStandardFloat('panel-prefered-height', 'Preferred Height', 0, 1, true)
96 96 ];
97 97  
98 98 var titleItems = [
... ... @@ -145,7 +145,7 @@ Ext.define('amdaPlotComp.PlotPanelForm', {
145 145 this.addStandardColor('panel-background-color', 'Background Color', amdaPlotObj.PlotObjectConfig.availableBackgroundColors),
146 146 this.addStandardFieldSet('Manual Bounds', '', boundsItems),
147 147 this.addStandardFieldSet('Manual Margins', '', marginItems),
148   - this.addStandardFieldSet('Prefered Dimensions', '', preferedDimItems),
  148 + this.addStandardFieldSet('Preferred Dimensions', '', preferedDimItems),
149 149 this.addStandardFieldSet('Title', '', titleItems),
150 150 this.addStandardFont('panel-font'),
151 151 this.addStandardFieldSet('Status Bars', '', statusItems),
... ...