You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allow an operation to be reverted so that user-specific undo can be supported. For example:
User 1 types "abc"
User 2 types "def"
User 1 clicks undo
An operation reverting the first change would need to be generated so that "abc" is deleted and not "def", even though "def" was last typed into the document. In other words, op1 = { insert "abc" }; revert(op1) = { delete 3, skip 3 }.
The text was updated successfully, but these errors were encountered:
Allow an operation to be reverted so that user-specific undo can be supported. For example:
An operation reverting the first change would need to be generated so that "abc" is deleted and not "def", even though "def" was last typed into the document. In other words, op1 = { insert "abc" }; revert(op1) = { delete 3, skip 3 }.
The text was updated successfully, but these errors were encountered: