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 @@
if(!pasteBinaryFromExcel)
History.TurnOn();
//чтобы удалялся stream с бинарником
window.global_pptx_content_loader.Clear();
window.global_pptx_content_loader.Clear(true);
};
this.ReadData = function(data, wb)
{
......
......@@ -5202,7 +5202,7 @@ function BinaryFileReader(doc, openParams)
this.Document.On_EndLoad();
//чтобы удалялся stream с бинарником
window.global_pptx_content_loader.Clear();
window.global_pptx_content_loader.Clear(true);
};
this.ReadFromString = function (sBase64, isCopyPaste) {
//надо сбросить то, что остался после открытия документа
......@@ -5431,7 +5431,7 @@ function BinaryFileReader(doc, openParams)
this.Document.DrawingDocument.m_oWordControl.m_oApi.sync_AddComment( oNewComment.Id, oNewComment.Data );
}
//чтобы удалялся 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 };
}
};
......
......@@ -721,13 +721,14 @@ function CPPTXContentLoader()
}
}
this.Clear = function()
this.Clear = function(bClearStreamOnly)
{
//вызывается пока только перед вставкой
this.Reader.stream = null;
this.stream = null;
this.BaseReader = null;
this.ImageMapChecker = {};
if(!bClearStreamOnly)
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