lets try normalizing the dom before applying a patch

pull/1/head
Caleb James DeLisle 2017-10-09 14:13:11 +03:00
parent 828a685ba8
commit 36aee2d174
1 changed files with 5 additions and 0 deletions

View File

@ -393,6 +393,11 @@ define([
inner.getAttribute('contenteditable'));
restoreMediaTags(userDocStateDom, mediaTagMap);
// Deal with adjasent text nodes
userDocStateDom.normalize();
inner.normalize();
var patch = (DD).diff(inner, userDocStateDom);
(DD).apply(inner, patch);
displayMediaTags(framework, inner, mediaTagMap);