mirror of
https://github.com/ether/etherpad-lite.git
synced 2026-05-08 05:36:09 +02:00
Changeset: Replace .apply() with spread operator
This commit is contained in:
parent
9c17b03660
commit
6d5b737140
@ -870,14 +870,14 @@ const textLinesMutator = (lines) => {
|
||||
curLine++;
|
||||
newLines.splice(0, 1);
|
||||
// insert the remaining new lines
|
||||
Array.prototype.push.apply(curSplice, newLines);
|
||||
curSplice.push(...newLines);
|
||||
curLine += newLines.length;
|
||||
// insert the remaining chars from the "old" line (e.g. the line we were in
|
||||
// when we started to insert new lines)
|
||||
curSplice.push(theLine.substring(lineCol));
|
||||
curCol = 0; // TODO(doc) why is this not set to the length of last line?
|
||||
} else {
|
||||
Array.prototype.push.apply(curSplice, newLines);
|
||||
curSplice.push(...newLines);
|
||||
curLine += newLines.length;
|
||||
}
|
||||
} else {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user