[ve] Fix mobile touch; Fix bug 72317

This commit is contained in:
Sergey Konovalov
2025-01-23 12:22:13 +03:00
parent 7e732f4751
commit 6a4baed737
6 changed files with 29 additions and 10 deletions

View File

@ -801,3 +801,12 @@ AscCommonWord.CPresentationField.prototype.private_GetString = function()
}
return sStr;
};
//todo CMobileDelegateEditorDiagram
AscCommon.CMobileDelegateEditorPresentation.prototype.GetObjectTrack = function(x, y, page, bSelected, bText) { return false; }
AscCommon.CMobileDelegateEditorPresentation.prototype.GetSelectionRectsBounds = function () { return null; }
AscCommon.CMobileDelegateEditorPresentation.prototype.GetSelectionRectsBounds = function () { return null; }
AscCommon.CMobileDelegateEditorPresentation.prototype.GetContextMenuType = function () { return AscCommon.MobileTouchContextMenuType.None; }
AscCommon.CMobileDelegateEditorPresentation.prototype.GetContextMenuInfo = function () {}
AscCommon.CMobileDelegateEditorPresentation.prototype.GetContextMenuPosition = function () { return { X : 0, Y : 0, Mode : AscCommon.MobileTouchContextMenuType.None }; }
AscCommon.CMobileDelegateEditorPresentation.prototype.Logic_GetNearestPos = function () { return null; }