From 07b425d7d21d8920622ffa0fe3023d79cf3d044f Mon Sep 17 00:00:00 2001 From: "Sergey.Luzyanin" Date: Wed, 5 Jun 2013 09:53:19 +0000 Subject: [PATCH] git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@47089 954022d7-b5bf-4e40-9824-e11837661b57 --- Common/wordcopypaste.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Common/wordcopypaste.js b/Common/wordcopypaste.js index e78aec957d..daf7904059 100644 --- a/Common/wordcopypaste.js +++ b/Common/wordcopypaste.js @@ -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; } } }