From ee09eac467fc298f7f2c9e91e08ff6daf4680a1f Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 26 May 2016 17:42:19 +0300 Subject: [PATCH] =?UTF-8?q?[DE]=20=D0=A2=D0=BE=D0=BB=D1=89=D0=B8=D0=BD?= =?UTF-8?q?=D0=B0=20=D0=B3=D1=80=D0=B0=D0=BD=D0=B8=D1=86=20=D0=BF=D0=BE-?= =?UTF-8?q?=D1=83=D0=BC=D0=BE=D0=BB=D1=87=D0=B0=D0=BD=D0=B8=D1=8E=20=D0=B2?= =?UTF-8?q?=D1=8B=D1=81=D1=82=D0=B0=D0=B2=D0=BB=D0=B5=D0=BD=D0=B0=20=D0=B2?= =?UTF-8?q?=200,5pt=20(=D0=BF=D0=BE=20=D0=BF=D1=80=D0=BE=D1=81=D1=8C=D0=B1?= =?UTF-8?q?=D0=B5=20=D0=BE=D1=82=D0=B4.=20=D0=BF=D1=80=D0=BE=D0=B5=D0=BA?= =?UTF-8?q?=D1=82=D0=B8=D1=80=D0=BE=D0=B2=D0=B0=D0=BD=D0=B8=D1=8F).?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/documenteditor/main/app/view/TableSettings.js | 2 +- apps/documenteditor/main/app/view/TableSettingsAdvanced.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/documenteditor/main/app/view/TableSettings.js b/apps/documenteditor/main/app/view/TableSettings.js index fc5ec0b170..033b01d73e 100644 --- a/apps/documenteditor/main/app/view/TableSettings.js +++ b/apps/documenteditor/main/app/view/TableSettings.js @@ -218,7 +218,7 @@ define([ el: $('#table-combo-border-size'), style: "width: 93px;" }); - this.BorderSize = this.cmbBorderSize.store.at(2).get('value'); + this.BorderSize = this.cmbBorderSize.store.at(1).get('value'); this.cmbBorderSize.setValue(this.BorderSize); this.cmbBorderSize.on('selected', _.bind(this.onBorderSizeSelect, this)); this.lockedControls.push(this.cmbBorderSize); diff --git a/apps/documenteditor/main/app/view/TableSettingsAdvanced.js b/apps/documenteditor/main/app/view/TableSettingsAdvanced.js index 43ecc627ab..6f655f5b19 100644 --- a/apps/documenteditor/main/app/view/TableSettingsAdvanced.js +++ b/apps/documenteditor/main/app/view/TableSettingsAdvanced.js @@ -869,7 +869,7 @@ define([ 'text!documenteditor/main/app/template/TableSettingsAdvanced.templat el: $('#tableadv-combo-border-size'), style: "width: 93px;" }); - var rec = this.cmbBorderSize.store.at(2); + var rec = this.cmbBorderSize.store.at(1); this.BorderSize = {ptValue: rec.get('value'), pxValue: rec.get('pxValue')}; this.cmbBorderSize.setValue(this.BorderSize.ptValue); this.cmbBorderSize.on('selected', _.bind(this.onBorderSizeSelect, this));