mirror of
https://github.com/ONLYOFFICE/sdkjs.git
synced 2026-04-07 14:09:12 +08:00
git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@47089 954022d7-b5bf-4e40-9824-e11837661b57
This commit is contained in:
committed by
Alexander.Trofimov
parent
fb03de69cf
commit
07b425d7d2
@ -2309,7 +2309,7 @@ PasteProcessor.prototype =
|
||||
{
|
||||
src_string = Drawing.GraphicObj.blipFill.RasterImageId;
|
||||
if(typeof src_string === "string")
|
||||
this.oImages[src_string] = documentOrigin + src_string;
|
||||
this.oImages[src_string] = src_string;
|
||||
}
|
||||
break;
|
||||
}
|
||||
@ -2328,7 +2328,7 @@ PasteProcessor.prototype =
|
||||
{
|
||||
src_string = Drawing.GraphicObj.spPr.Fill.fill.RasterImageId;
|
||||
if(typeof src_string === "string")
|
||||
this.oImages[src_string] = documentOrigin + src_string;
|
||||
this.oImages[src_string] = src_string;
|
||||
}
|
||||
}
|
||||
if(typeof Drawing.GraphicObj.isGroup === "function" && Drawing.GraphicObj.isGroup() === true)
|
||||
@ -2348,7 +2348,7 @@ PasteProcessor.prototype =
|
||||
src_string = sp.blipFill.RasterImageId;
|
||||
|
||||
if(typeof src_string === "string")
|
||||
this.oImages[src_string] = documentOrigin + src_string;
|
||||
this.oImages[src_string] = src_string;
|
||||
}
|
||||
}
|
||||
if(typeof sp.isShape === "function" && sp.isShape())
|
||||
@ -2360,7 +2360,7 @@ PasteProcessor.prototype =
|
||||
{
|
||||
src_string = sp.spPr.Fill.fill.RasterImageId;
|
||||
if(typeof src_string === "string")
|
||||
this.oImages[src_string] = documentOrigin + src_string;
|
||||
this.oImages[src_string] = src_string;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user