Merge pull request #563 from ONLYOFFICE/fix/bug-47368

Fix/bug 47368
This commit is contained in:
Alexander Yuzhin 2020-11-12 15:20:42 +03:00 committed by GitHub
commit 86a7ea3abc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -603,9 +603,9 @@ define([
);
});
} else {
_.defer(function () {
_.delay(function () {
me.api.asc_DownloadAs(new Asc.asc_CDownloadOptions(format));
});
}, 300);
}
me.hideModal();
@ -624,9 +624,9 @@ define([
onPrint: function(e) {
var me = this;
_.defer(function () {
_.delay(function () {
me.api.asc_Print();
});
}, 300);
me.hideModal();
},