mirror of
https://github.com/ONLYOFFICE/sdkjs.git
synced 2026-04-07 14:09:12 +08:00
Add handling for groups hyperlinks
This commit is contained in:
committed by
Sergey Luzyanin
parent
385e8bbf89
commit
fa5d749ad7
@ -704,6 +704,14 @@ function handleShapeImageInGroup(drawingObjectsController, drawing, shape, e, x,
|
||||
|
||||
function handleGroup(drawing, drawingObjectsController, e, x, y, group, pageIndex, bWord)
|
||||
{
|
||||
let bHit = drawing.hit && drawing.hit(x, y);
|
||||
if (bHit) {
|
||||
const oCheckResult = drawingObjectsController.checkDrawingHyperlinkAndMacro(drawing, e, bHit, x, y, pageIndex);
|
||||
if (oCheckResult) {
|
||||
return oCheckResult;
|
||||
}
|
||||
}
|
||||
|
||||
var grouped_objects = drawing.getArrGraphicObjects();
|
||||
var ret;
|
||||
for(var j = grouped_objects.length - 1; j > -1; --j)
|
||||
|
||||
Reference in New Issue
Block a user