[PE mobile] Fix Bug 53477

This commit is contained in:
SergeyEzhin 2021-11-03 22:52:14 +04:00
parent 1cb133f6bb
commit 05f2217ac5

View file

@ -297,11 +297,11 @@ class MainController extends Component {
this.api.Resize(); 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); 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); this.api.asc_enableKeyEvents(true);
}); });