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

Bug 25599 - Невозможно вставить таб из буфера после того, как его вырезали.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@57711 954022d7-b5bf-4e40-9824-e11837661b57
parent 32199574
......@@ -565,7 +565,7 @@ CopyProcessor.prototype =
sRes += CopyPasteCorrectString(sValue);
break;
case para_Space: sRes += " "; break;
case para_Tab: sRes += "<span style='mso-tab-count:1'> </span>"; break;
case para_Tab: sRes += "<span style='mso-tab-count:1'>" + String.fromCharCode(0xA0, 0xA0, 0xA0, 0xA0) + "</span>"; break;
case para_NewLine:
if( break_Page == ParaItem.BreakType)
{
......
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