Commit e2c78efd authored by Anna.Pavlova's avatar Anna.Pavlova Committed by Alexander.Trofimov

Заливка 67671 - исправлена работы функции MathToImageConverter, для...

Заливка 67671 - исправлена работы функции MathToImageConverter, для конвертации формул в картинки (при копировании и вставки вне редактора и генерировании картинок для меню)
К заливке 67671 функция Get_Bounds всегда возвращает двухмерный массив

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@67673 954022d7-b5bf-4e40-9824-e11837661b57
parent 4088dc04
......@@ -2815,7 +2815,7 @@ ParaMath.prototype.Get_Bounds = function()
{
if (undefined === this.Paragraph || null === this.Paragraph)
{
return [{X : 0, Y : 0, W : 0, H : 0, Page : 0}];
return [ [{X : 0, Y : 0, W : 0, H : 0, Page : 0}] ];
}
else
{
......@@ -2824,7 +2824,8 @@ ParaMath.prototype.Get_Bounds = function()
};
ParaMath.prototype.private_GetBounds = function(Content)
{
var Bounds = [];
var Bounds = [ [{X : 0, Y : 0, W : 0, H : 0, Page : 0}] ];
var StartParaPage = this.Paragraph.Get_StartPage_Absolute();
var ContentBounds = Content.Get_Bounds();
......
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