Commit c1784f4a authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

Правка для бага: вводим текст, затем удаляем его часть и делаем...

Правка для бага: вводим текст, затем удаляем его часть и делаем undo(происходит дублирование, а не возвращение удаленного)

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@49958 954022d7-b5bf-4e40-9824-e11837661b57
parent bccdf207
......@@ -1505,7 +1505,7 @@
var nextFr = opt.fragments[i + 1];
if(t._isEqualFormats(fr.format, nextFr.format) && fr.theme == nextFr.theme && fr.tint == nextFr.tint) {
opt.fragments.splice(i, 2,
{format: fr.format, text: fr.text + fr.text, theme: fr.theme, tint: fr.tint});
{format: fr.format, text: fr.text + nextFr.text, theme: fr.theme, tint: fr.tint});
continue;
}
}
......
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