Commit 71b6d8f0 authored by Ilya.Kirillov's avatar Ilya.Kirillov Committed by Alexander.Trofimov

Исправлен баг с определением направления селекта в таблице (баг 27318).

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@59454 954022d7-b5bf-4e40-9824-e11837661b57
parent e9cee4e0
......@@ -7592,7 +7592,7 @@ CTable.prototype =
H = this.RowsInfo[EndPos.Row].H[CurPage];
var Direction = 1;
if (this.Selection.StartPos.Row < this.Selection.EndPos.Row || (this.Selection.StartPos.Row === this.Selection.EndPos.Row && this.Selection.StartPos.Cell <= this.Selection.EndPos.Cell))
if (this.Selection.StartPos.Pos.Row < this.Selection.EndPos.Pos.Row || (this.Selection.StartPos.Pos.Row === this.Selection.EndPos.Pos.Row && this.Selection.StartPos.Pos.Cell <= this.Selection.EndPos.Pos.Cell))
Direction = 1;
else
Direction = -1;
......
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