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

http://bugzserver/show_bug.cgi?id=26614 - Изображения, объедиенные в группу,...

http://bugzserver/show_bug.cgi?id=26614 - Изображения, объедиенные в группу, копируются из CSE в виде "красных крестов"

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@58429 954022d7-b5bf-4e40-9824-e11837661b57
parent 4e95d91d
......@@ -3857,7 +3857,18 @@ PasteProcessor.prototype =
//aPastedImages[aPastedImages.length] = new CBuilderImages(graphicObj.blipFill, imageUrl);
images[images.length] = imageUrl;
}
}
else if(graphicObj.isGroup() && graphicObj.spTree && graphicObj.spTree.length)
{
var spTree = graphicObj.spTree;
for(var j = 0; j < spTree.length; j++)
{
if(spTree[j].isImage())
{
images.push(spTree[j].getImageUrl());
}
}
}
};
aContent = [];
......
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