[DE mobile] Fix for rev.2592bffef1df37996f8d521ba247d2fa277b2a62 ( 13 марта 2019 г. 13:59:41 [de] Add edit of first line of the paragraph)

This commit is contained in:
Julia Radzhabova 2019-04-24 17:46:46 +03:00
parent f05167627d
commit b32a4082da

View file

@ -256,6 +256,11 @@ define([
} else {
distance = Math.min(100, ++distance);
}
_paragraphInfo.spaceAfter = distance;
$('#paragraph-distance-after .item-after label').text(_paragraphInfo.spaceAfter < 0 ? 'Auto' : (_paragraphInfo.spaceAfter) + ' ' + metricText);
this.api.put_LineSpacingBeforeAfter(1, (_paragraphInfo.spaceAfter < 0) ? -1 : Common.Utils.Metric.fnRecalcToMM(_paragraphInfo.spaceAfter));
},
onSpinFirstLine: function(e) {