Merge pull request #1291 from ONLYOFFICE/feature/bug-fixes

[PE mobile] Fix Bug 53477
This commit is contained in:
maxkadushkin 2021-11-08 11:55:10 +03:00 committed by GitHub
commit 09512b0ccb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);
});