Commit 6b021a28 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

Bug 27982 - Ошибки в консоли после копирования и вставки данных таблицы в пустой select ячейки

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@60222 954022d7-b5bf-4e40-9824-e11837661b57
parent 09732bd2
...@@ -772,8 +772,11 @@ CGraphicFrame.prototype = ...@@ -772,8 +772,11 @@ CGraphicFrame.prototype =
this.parent.graphicObjects.selectObject(this, 0); this.parent.graphicObjects.selectObject(this, 0);
this.parent.graphicObjects.selection.textSelection = this; this.parent.graphicObjects.selection.textSelection = this;
} }
editor.WordControl.m_oLogicDocument.Set_CurPage(this.parent.num); if(editor.WordControl.m_oLogicDocument.CurPage !== this.parent.num)
editor.WordControl.GoToPage(this.parent.num); {
editor.WordControl.m_oLogicDocument.Set_CurPage(this.parent.num);
editor.WordControl.GoToPage(this.parent.num);
}
} }
}, },
......
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