From 412d53bc0bd314fe891c452cbd0fde63d6b7b5fc Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 21 May 2020 20:43:18 +0300 Subject: [PATCH] [SSE] Function wizard: hide argument description --- apps/spreadsheeteditor/main/app/view/FormulaWizard.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/spreadsheeteditor/main/app/view/FormulaWizard.js b/apps/spreadsheeteditor/main/app/view/FormulaWizard.js index 8398990da..068b8ef96 100644 --- a/apps/spreadsheeteditor/main/app/view/FormulaWizard.js +++ b/apps/spreadsheeteditor/main/app/view/FormulaWizard.js @@ -46,7 +46,7 @@ define([ SSE.Views.FormulaWizard = Common.Views.AdvancedSettingsWindow.extend(_.extend({ options: { contentWidth: 580, - height: 420 + height: 397 }, initialize : function(options) { @@ -74,7 +74,7 @@ define([ '', '', '
', - '', + // '', '', '', '', @@ -222,7 +222,7 @@ define([ recalcArgTableSize: function() { var height = this.panelDesc.outerHeight(); - height = this.$window.find('.box').height() - 7 - height - 60; + height = this.$window.find('.box').height() - 7 - height - 54; height = parseInt(height/30) * 30; this.tableArgs.parent().css('max-height', height); if (!this.scrollerY) @@ -272,7 +272,7 @@ define([ lblValue: div.find('#formula-wizard-lbl-val-arg'+argcount), argInput: txt, argName: 'Argument ' + (argcount+1), - argDesc: 'some argument description', + // argDesc: 'some argument description', argType: argtype, argTypeName: me.getArgType(argtype) });