Commit d81438ec authored by Igor.Zotov's avatar Igor.Zotov Committed by Alexander.Trofimov

http://bugzserver/show_bug.cgi?id=29806 - Ошибка в консоли при закрытии окна...

http://bugzserver/show_bug.cgi?id=29806 - Ошибка в консоли при закрытии окна "Copy, Cut and Paste Actions"

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@63608 954022d7-b5bf-4e40-9824-e11837661b57
parent de481eed
...@@ -717,8 +717,17 @@ ...@@ -717,8 +717,17 @@
else if(activateLocalStorage || copyPasteUseBinary) else if(activateLocalStorage || copyPasteUseBinary)
{ {
var t = this; var t = this;
var onlyFromLocalStorage = true;
t._editorPasteExec(worksheet,t.lStorage,false,onlyFromLocalStorage); if(t.element && t.element.innerHTML !== " " && t.element.innerHTML !== "")
{
t._editorPasteExec(worksheet, t.lStorage, false, true);
}
else
{
window.GlobalPasteFlagCounter = 0;
window.GlobalPasteFlag = false;
}
return true; return true;
} }
return false; return false;
......
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