Commit 20337365 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin

Bug 27678 - Подсказка отображается не рядом с гиперссылкой, находящейся в...

Bug 27678 - Подсказка отображается не рядом с гиперссылкой, находящейся в таблице . Поправлен баг с зацикливанием при открытии таблицы Ежедневный отчет.xlsx

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@59809 954022d7-b5bf-4e40-9824-e11837661b57
parent cc3eaade
...@@ -1209,12 +1209,12 @@ function GraphicOption(ws, type, range, aId, offset) { ...@@ -1209,12 +1209,12 @@ function GraphicOption(ws, type, range, aId, offset) {
this.offset = offset; this.offset = offset;
} }
GraphicOption.prototype.checkCol = function (col) { GraphicOption.prototype.checkCol = function (col) {
while ((col > 0) && !this.ws.cols[col]) while ((col > 0) && !this.ws.cols[col] && this.ws.cols < gc_nMaxCol)
this.ws.expandColsOnScroll(true); this.ws.expandColsOnScroll(true);
}; };
GraphicOption.prototype.checkRow = function (row) { GraphicOption.prototype.checkRow = function (row) {
while ((row > 0) && !this.ws.rows[row]) while ((row > 0) && !this.ws.rows[row] && this.ws.rows < gc_nMaxRow)
this.ws.expandRowsOnScroll(true); this.ws.expandRowsOnScroll(true);
}; };
......
...@@ -8472,6 +8472,10 @@ Paragraph.prototype = ...@@ -8472,6 +8472,10 @@ Paragraph.prototype =
{ {
return CurDocContent.Parent.parent.transformText; return CurDocContent.Parent.parent.transformText;
} }
if(CurDocContent.transformText)
{
return CurDocContent.transformText;
}
return null; return null;
}, },
......
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