Fix duplicate text bug #352

pull/1/head
yflory 2020-03-30 16:41:47 +02:00
parent b4b1ad893f
commit 8210ae3a09
1 changed files with 4 additions and 2 deletions

View File

@ -601,6 +601,8 @@ define([
restoreMediaTags(userDocStateDom, mediaTagMap);
cursors.removeCursors(inner);
// Deal with adjasent text nodes
userDocStateDom.normalize();
inner.normalize();
@ -809,8 +811,8 @@ define([
});
/* Display the cursor of other users and send our cursor */
//framework.setCursorGetter(cursors.cursorGetter);
//framework.onCursorUpdate(cursors.onCursorUpdate);
framework.setCursorGetter(cursors.cursorGetter);
framework.onCursorUpdate(cursors.onCursorUpdate);
inner.addEventListener('click', updateCursor);
inner.addEventListener('keyup', updateCursor);