Commit 39477c55 authored by Sergey.Konovalov's avatar Sergey.Konovalov Committed by Alexander.Trofimov

правка для Revision: 60421.

после открытия бинарника удалялся ImageMap

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@60486 954022d7-b5bf-4e40-9824-e11837661b57
parent 555571c7
...@@ -6765,7 +6765,7 @@ ...@@ -6765,7 +6765,7 @@
if(!pasteBinaryFromExcel) if(!pasteBinaryFromExcel)
History.TurnOn(); History.TurnOn();
//чтобы удалялся stream с бинарником //чтобы удалялся stream с бинарником
window.global_pptx_content_loader.Clear(); window.global_pptx_content_loader.Clear(true);
}; };
this.ReadData = function(data, wb) this.ReadData = function(data, wb)
{ {
......
...@@ -5202,7 +5202,7 @@ function BinaryFileReader(doc, openParams) ...@@ -5202,7 +5202,7 @@ function BinaryFileReader(doc, openParams)
this.Document.On_EndLoad(); this.Document.On_EndLoad();
//чтобы удалялся stream с бинарником //чтобы удалялся stream с бинарником
window.global_pptx_content_loader.Clear(); window.global_pptx_content_loader.Clear(true);
}; };
this.ReadFromString = function (sBase64, isCopyPaste) { this.ReadFromString = function (sBase64, isCopyPaste) {
//надо сбросить то, что остался после открытия документа //надо сбросить то, что остался после открытия документа
...@@ -5431,7 +5431,7 @@ function BinaryFileReader(doc, openParams) ...@@ -5431,7 +5431,7 @@ function BinaryFileReader(doc, openParams)
this.Document.DrawingDocument.m_oWordControl.m_oApi.sync_AddComment( oNewComment.Id, oNewComment.Data ); this.Document.DrawingDocument.m_oWordControl.m_oApi.sync_AddComment( oNewComment.Id, oNewComment.Data );
} }
//чтобы удалялся stream с бинарником //чтобы удалялся stream с бинарником
window.global_pptx_content_loader.Clear(); window.global_pptx_content_loader.Clear(true);
return { content: aContent, fonts: aPrepeareFonts, images: aPrepeareImages, bAddNewStyles: addNewStyles, aPastedImages: aPastedImages, bInBlock: bInBlock }; return { content: aContent, fonts: aPrepeareFonts, images: aPrepeareImages, bAddNewStyles: addNewStyles, aPastedImages: aPastedImages, bInBlock: bInBlock };
} }
}; };
......
...@@ -721,12 +721,13 @@ function CPPTXContentLoader() ...@@ -721,12 +721,13 @@ function CPPTXContentLoader()
} }
} }
this.Clear = function() this.Clear = function(bClearStreamOnly)
{ {
//вызывается пока только перед вставкой //вызывается пока только перед вставкой
this.Reader.stream = null; this.Reader.stream = null;
this.stream = null; this.stream = null;
this.BaseReader = null; this.BaseReader = null;
if(!bClearStreamOnly)
this.ImageMapChecker = {}; this.ImageMapChecker = {};
} }
} }
......
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