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

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

http://bugzserver/show_bug.cgi?id=24768 - Ошибка в консоли при нажатии на "paste" во фрейме диаграммы

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@57359 954022d7-b5bf-4e40-9824-e11837661b57
parent fb6c0e54
......@@ -361,7 +361,12 @@
if(AscBrowser.isIE)
{
this._cleanElement();
this.element.appendChild(this._makeTableNode(range, worksheet));
var text = this._makeTableNode(range, worksheet);
if(text == false)
return true;
this.element.appendChild(text);
//use binary strings
if(copyPasteUseBinary)
......@@ -439,6 +444,9 @@
var text = t._makeTableNode(range, worksheet, isCut, isIntoShape);
if(text == false)
return true;
if(isIntoShape)
{
this.lStorage = {};
......
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