[DE] Толщина границ по-умолчанию выставлена в 0,5pt (по просьбе отд. проектирования).

This commit is contained in:
Julia Radzhabova 2016-05-26 17:42:19 +03:00
parent ce7957d76f
commit ee09eac467
2 changed files with 2 additions and 2 deletions

View file

@ -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);

View file

@ -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));