From 05f2217ac5a9202d267426714930ce229bbe6ac5 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Wed, 3 Nov 2021 22:52:14 +0400 Subject: [PATCH] [PE mobile] Fix Bug 53477 --- apps/presentationeditor/mobile/src/controller/Main.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/presentationeditor/mobile/src/controller/Main.jsx b/apps/presentationeditor/mobile/src/controller/Main.jsx index 94ffe58fa..808a3888e 100644 --- a/apps/presentationeditor/mobile/src/controller/Main.jsx +++ b/apps/presentationeditor/mobile/src/controller/Main.jsx @@ -297,11 +297,11 @@ class MainController extends Component { this.api.Resize(); }); - $$(window).on('popover:open popup:open sheet:open actions:open', () => { + $$(window).on('popup:open sheet:open actions:open', () => { this.api.asc_enableKeyEvents(false); }); - $$(window).on('popover:close popup:close sheet:close actions:close', () => { + $$(window).on('popup:close sheet:close actions:close', () => { this.api.asc_enableKeyEvents(true); });