Commit 0612c337 authored by Sergey.Konovalov's avatar Sergey.Konovalov

to Revision: 65556 asc_DownloadAs переименован параметр, чтобы было как в mailmerge

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@65558 954022d7-b5bf-4e40-9824-e11837661b57
parent 8c1f5d7e
......@@ -539,7 +539,7 @@ var ASC_DOCS_API_USE_EMBEDDED_FONTS = "@@ASC_DOCS_API_USE_EMBEDDED_FONTS";
}
};
spreadsheet_api.prototype.asc_DownloadAs = function(typeFile, isGetUrl) {//передаем число соответствующее своему формату. например c_oAscFileType.XLSX
spreadsheet_api.prototype.asc_DownloadAs = function(typeFile, bIsDownload) {//передаем число соответствующее своему формату. например c_oAscFileType.XLSX
if (!this.canSave || this.isChartEditor || c_oAscAdvancedOptionsAction.None !== this.advancedOptionsAction) {
return;
}
......@@ -558,7 +558,7 @@ var ASC_DOCS_API_USE_EMBEDDED_FONTS = "@@ASC_DOCS_API_USE_EMBEDDED_FONTS";
if ('ok' == input["status"]) {
var url = input["data"];
if (url) {
t.asc_processSavedFile(url, isGetUrl);
t.asc_processSavedFile(url, bIsDownload);
} else {
t.handlers.trigger("asc_onError", c_oAscError.ID.Unknown, c_oAscError.Level.NoCritical);
}
......
......@@ -1514,7 +1514,7 @@ asc_docs_api.prototype.processSavedFile = function(url, bInner){
getFile(url);
}
};
asc_docs_api.prototype.asc_DownloadAs = function(typeFile, isGetUrl){//передаем число соответствующее своему формату.
asc_docs_api.prototype.asc_DownloadAs = function(typeFile, bIsDownload){//передаем число соответствующее своему формату.
this.sync_StartAction(c_oAscAsyncActionType.BlockInteraction, c_oAscAsyncAction.DownloadAs);
var t = this;
_downloadAs(this, typeFile, function(input){
......@@ -1522,7 +1522,7 @@ asc_docs_api.prototype.asc_DownloadAs = function(typeFile, isGetUrl){//пере
if('ok' == input["status"]){
var url = input["data"];
if(url) {
t.processSavedFile(url, isGetUrl);
t.processSavedFile(url, bIsDownload);
} else {
t.asc_fireCallback("asc_onError", c_oAscError.ID.Unknown, c_oAscError.Level.NoCritical);
}
......
......@@ -2252,7 +2252,7 @@ asc_docs_api.prototype.asc_Save = function ()
}
};
asc_docs_api.prototype.asc_DownloadAs = function(typeFile, isGetUrl, txtOptions) {//передаем число соответствующее своему формату.
asc_docs_api.prototype.asc_DownloadAs = function(typeFile, bIsDownload, txtOptions) {//передаем число соответствующее своему формату.
var actionType = this.mailMergeFileData ? c_oAscAsyncAction.MailMergeLoadFile : c_oAscAsyncAction.DownloadAs;
this.sync_StartAction(c_oAscAsyncActionType.BlockInteraction, actionType);
var t = this;
......@@ -2263,7 +2263,7 @@ asc_docs_api.prototype.asc_DownloadAs = function(typeFile, isGetUrl, txtOptions)
if('ok' == input["status"]){
var url = input["data"];
if(url) {
t.processSavedFile(url, isGetUrl);
t.processSavedFile(url, bIsDownload);
} else {
t.asc_fireCallback("asc_onError", c_oAscError.ID.Unknown, c_oAscError.Level.NoCritical);
}
......
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