Commit 71f9a13a authored by GoshaZotov's avatar GoshaZotov

fix for paste in cell editor

parent aebbb827
...@@ -128,6 +128,7 @@ ...@@ -128,6 +128,7 @@
pasteData: function(ws, _format, data1, data2) pasteData: function(ws, _format, data1, data2)
{ {
var t = this; var t = this;
t.pasteProcessor.clean();
switch (_format) switch (_format)
{ {
...@@ -742,6 +743,15 @@ ...@@ -742,6 +743,15 @@
constructor: PasteProcessorExcel, constructor: PasteProcessorExcel,
clean: function()
{
this.activeRange = null;
this.alreadyLoadImagesOnServer = false;
this.fontsNew = {};
this.oImages = {};
},
pasteFromBinary: function(worksheet, binary, isCellEditMode) pasteFromBinary: function(worksheet, binary, isCellEditMode)
{ {
var base64 = null, base64FromWord = null, base64FromPresentation = null, t = this; var base64 = null, base64FromWord = null, base64FromPresentation = null, t = this;
......
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