Update replace_step.js #19
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "master"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
fix gap range : gapFrom = min(from,gapFrom), gapTo=max(to,gapTo)
if the external boundary is reached, there will be no deletion, right?Are there any other ignored problems?
What problem does this patch solve?
ReplaceAroundStep data loss during offline collaborative editing [#1216]
Sorry, the first patch has a low-level syntax error:
line 146
if ((from.deleted && to.deleted) return null
fixed to:
if (from.deleted && to.deleted) return null
Pull request closed