From ae4cdc38aa1d138074221ed78069e24ef89a04f6 Mon Sep 17 00:00:00 2001 From: maxkadushkin Date: Fri, 25 Jul 2025 16:00:01 +0300 Subject: [PATCH] [PE][mobile] for bug 75827 --- .../mobile/src/controller/Preview.jsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/presentationeditor/mobile/src/controller/Preview.jsx b/apps/presentationeditor/mobile/src/controller/Preview.jsx index 8497600090..fe5cad7701 100644 --- a/apps/presentationeditor/mobile/src/controller/Preview.jsx +++ b/apps/presentationeditor/mobile/src/controller/Preview.jsx @@ -19,9 +19,9 @@ const PreviewController = props => { ContextMenu.closeContextMenu(); _view = $$('#pe-preview'); - _view.on('touchstart', onTouchStart); - _view.on('touchmove', onTouchMove); - _view.on('touchend', onTouchEnd); + // _view.on('touchstart', onTouchStart); + // _view.on('touchmove', onTouchMove); + // _view.on('touchend', onTouchEnd); show(); onDocumentReady(); @@ -31,9 +31,9 @@ const PreviewController = props => { api.asc_unregisterCallback('asc_onEndDemonstration', onEndDemonstration); - _view.off('touchstart', onTouchStart); - _view.off('touchmove', onTouchMove); - _view.off('touchend', onTouchEnd); + // _view.off('touchstart', onTouchStart); + // _view.off('touchmove', onTouchMove); + // _view.off('touchend', onTouchEnd); }; }, []);