contentcollector: pasting an OL in Chrome inserted an additional line break. Fixed.

This comments out some code that was probably a quirk from ie6 era.
See PR: https://github.com/ether/etherpad-lite/issues/2412

Fixes #2412.
This commit is contained in:
John McLear 2020-03-29 14:09:06 +00:00 committed by muxator
parent 8b2fe75867
commit 85217b55e0
1 changed files with 2 additions and 1 deletions

View File

@ -655,7 +655,8 @@ function makeContentCollector(collectStyles, abrowser, apool, domInterface, clas
{
if (lines.length() - 1 == startLine)
{
cc.startNewLine(state);
// commented out to solve #2412 - https://github.com/ether/etherpad-lite/issues/2412
// cc.startNewLine(state);
}
else
{