Commit c752feac authored by Sergey.Luzyanin's avatar Sergey.Luzyanin Committed by Alexander.Trofimov

правка бага 20874 - [Copy&Paste] Теряется изображение при копировании листа книги с ним

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@51154 954022d7-b5bf-4e40-9824-e11837661b57
parent a3dbcd07
......@@ -1523,7 +1523,12 @@ CBlipFill.prototype =
Writer.WriteBool(flag);
if(flag)
{
var string_to_write = window["Asc"]["editor"].documentOrigin + getFullImageSrc(this.RasterImageId);
var string_to_write = getFullImageSrc(this.RasterImageId);
if(string_to_write.indexOf(window["Asc"]["editor"].documentOrigin) !== 0)
{
string_to_write = window["Asc"]["editor"].documentOrigin + string_to_write;
}
/*if(string_to_write.indexOf(documentOrigin) !== 0
&& string_to_write.indexOf("http:") !== 0
&& string_to_write.indexOf("https:") !== 0
......
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