Commit c9a2fdb0 authored by Igor.Zotov's avatar Igor.Zotov Committed by Alexander.Trofimov

http://bugzserver/show_bug.cgi?id=26616 - [Copy&Paste] Вставка изображений и...

http://bugzserver/show_bug.cgi?id=26616 - [Copy&Paste] Вставка изображений и таблиц и web страниц происходит с сильным искажением размера
показываю плашку "загрузка изображений" на sendCommand

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@59719 954022d7-b5bf-4e40-9824-e11837661b57
parent 5188ad34
......@@ -4007,6 +4007,9 @@ PasteProcessor.prototype =
if(aImagesToDownload.length > 0)
{
var rData = {"id":documentId, "c":"imgurls", "vkey": documentVKey, "data": JSON.stringify(aImagesToDownload)};
//плашка для отправки изображений на сервер
oThis.api.sync_StartAction(c_oAscAsyncActionType.BlockInteraction, c_oAscAsyncAction.LoadImage);
sendCommand( this.api, function(incomeObject){
if(incomeObject && "imgurls" == incomeObject.type)
{
......@@ -4018,6 +4021,7 @@ PasteProcessor.prototype =
if(sTo)
{ oThis.oImages[sFrom] = sTo; oPrepeareImages[i] = sTo; } }
}
oThis.api.sync_EndAction(c_oAscAsyncActionType.BlockInteraction, c_oAscAsyncAction.LoadImage);
oThis.api.pre_Paste(aPrepeareFonts, oPrepeareImages, fCallback);
}, rData );
}
......
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