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
Deletion of mixed content (text and child elements) in the editor window leads to the duplication of text contents, see for example this video.
The cause seems to be in the replaceMixedSelection function in the XPath module, specifically this line:
copyFlag ? result += ch : null;
Fixing this could be quite involved. So far, using only backspace for deletions, as opposed to marking and deleting mixed content, seems to be a viable workaround.
The text was updated successfully, but these errors were encountered:
Deletion of mixed content (text and child elements) in the editor window leads to the duplication of text contents, see for example this video.
The cause seems to be in the
replaceMixedSelection
function in the XPath module, specifically this line:copyFlag ? result += ch : null;
Fixing this could be quite involved. So far, using only backspace for deletions, as opposed to marking and deleting mixed content, seems to be a viable workaround.
The text was updated successfully, but these errors were encountered: