Commit 7211352c authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Реализовано, чтобы при нажатии Backspace в начале параграфа менялся его тип прилегания (баг 11365).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@48033 954022d7-b5bf-4e40-9824-e11837661b57
parent ed84878b
......@@ -5012,6 +5012,14 @@ Paragraph.prototype =
{
this.Remove_PresentationNumbering();
}
else if ( align_Right === Pr.Jc )
{
this.Set_Align( align_Center );
}
else if ( align_Center === Pr.Jc )
{
this.Set_Align( align_Left );
}
else if ( Math.abs(Pr.Ind.FirstLine) > 0.001 )
{
if ( Pr.Ind.FirstLine > 0 )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment