Commit 07d3539e authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

При скачивании проверяем, закончилось ли предыдущее скачивание (возможность зажать Ctrl+P)

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@60919 954022d7-b5bf-4e40-9824-e11837661b57
parent 70521bb7
......@@ -546,6 +546,9 @@ var ASC_DOCS_API_USE_EMBEDDED_FONTS = "@@ASC_DOCS_API_USE_EMBEDDED_FONTS";
};
spreadsheet_api.prototype.asc_DownloadAs = function(typeFile){//передаем число соответствующее своему формату. например c_oAscFileType.XLSX
if (!this.canSave || this.isChartEditor || c_oAscAdvancedOptionsAction.None !== this.advancedOptionsAction)
return;
if (undefined != window['appBridge']) {
window['appBridge']['dummyCommandDownloadAs'] (); // TEST
return;
......@@ -570,7 +573,7 @@ var ASC_DOCS_API_USE_EMBEDDED_FONTS = "@@ASC_DOCS_API_USE_EMBEDDED_FONTS";
return;
}
if (!this.canSave || this.isChartEditor)
if (!this.canSave || this.isChartEditor || c_oAscAdvancedOptionsAction.None !== this.advancedOptionsAction)
return;
// Не даем пользователю сохранять, пока не закончится сохранение
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment