From 43de4621f1923a200357efe541186a80b147147d Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 3 May 2018 16:07:11 +0300 Subject: [PATCH] [DE][PE] Change insert table dialog --- apps/common/main/lib/view/InsertTableDialog.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/common/main/lib/view/InsertTableDialog.js b/apps/common/main/lib/view/InsertTableDialog.js index c895a3bb0..08ededc93 100644 --- a/apps/common/main/lib/view/InsertTableDialog.js +++ b/apps/common/main/lib/view/InsertTableDialog.js @@ -48,23 +48,23 @@ define([ Common.Views.InsertTableDialog = Common.UI.Window.extend(_.extend({ options: { width: 230, - height: 170, - header: false, + height: 156, style: 'min-width: 230px;', cls: 'modal-dlg', split: false }, initialize : function(options) { - _.extend(this.options, options || {}); + _.extend(this.options, { + title: (options.split) ? this.txtTitleSplit : this.txtTitle + }, options || {}); this.template = [ '
', - '

' + ((options.split) ? this.txtTitleSplit : this.txtTitle) + '

', - '
', + '
', '
', '
', - '
', + '
', '
', '
', '
',