Fixed bug #47368
This commit is contained in:
parent
2b7d6ebcdf
commit
004656e919
|
@ -603,9 +603,9 @@ define([
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
_.defer(function () {
|
_.delay(function () {
|
||||||
me.api.asc_DownloadAs(new Asc.asc_CDownloadOptions(format));
|
me.api.asc_DownloadAs(new Asc.asc_CDownloadOptions(format));
|
||||||
});
|
}, 300);
|
||||||
}
|
}
|
||||||
|
|
||||||
me.hideModal();
|
me.hideModal();
|
||||||
|
@ -624,9 +624,9 @@ define([
|
||||||
onPrint: function(e) {
|
onPrint: function(e) {
|
||||||
var me = this;
|
var me = this;
|
||||||
|
|
||||||
_.defer(function () {
|
_.delay(function () {
|
||||||
me.api.asc_Print();
|
me.api.asc_Print();
|
||||||
});
|
}, 300);
|
||||||
me.hideModal();
|
me.hideModal();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue