Commit 7ce59bbb authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

отдача информации о гиперссылках

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@53149 954022d7-b5bf-4e40-9824-e11837661b57
parent e34fd7ad
...@@ -259,7 +259,7 @@ function handleShapeImageCursorType(drawing, drawingObjects, drawingObjectsContr ...@@ -259,7 +259,7 @@ function handleShapeImageCursorType(drawing, drawingObjects, drawingObjectsContr
} }
else if(hit_in_text_rect) else if(hit_in_text_rect)
{ {
return {objectId: drawing.Id, cursorType: "text"}; return {objectId: drawing.Id, cursorType: "text", hyperlink: hit_in_text_rect};
} }
return null; return null;
} }
...@@ -311,7 +311,7 @@ function handleGroupedShapeImageCursorType(drawing, group, drawingObjects, drawi ...@@ -311,7 +311,7 @@ function handleGroupedShapeImageCursorType(drawing, group, drawingObjects, drawi
} }
else if(hit_in_text_rect) else if(hit_in_text_rect)
{ {
return {objectId: group.Id, cursorType: "text"}; return {objectId: group.Id, cursorType: "text", hyperlink: hit_in_text_rect};
} }
return null; return null;
} }
...@@ -512,7 +512,7 @@ function handleShapeImageInCurrentGroupCursorType(drawing, group, drawingObjects ...@@ -512,7 +512,7 @@ function handleShapeImageInCurrentGroupCursorType(drawing, group, drawingObjects
} }
else if(hit_in_text_rect) else if(hit_in_text_rect)
{ {
return {objectId: group.Id, cursorType: "text"}; return {objectId: group.Id, cursorType: "text", hyperlink: hit_in_text_rect};
} }
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