prevent empty span in a new node
authorJan Szejko <janek37@gmail.com>
Thu, 23 Feb 2017 16:38:04 +0000 (17:38 +0100)
committerJan Szejko <janek37@gmail.com>
Thu, 23 Feb 2017 16:50:22 +0000 (17:50 +0100)
src/editor/plugins/core/core.js

index bc74e6b..9a333d0 100644 (file)
@@ -122,6 +122,11 @@ plugin.documentExtension.textNode.transformations = {
                 parent.contents().some(function(n) {
                     return move(n, newNode);
                 });
+                if(newNodes.second.contents()[0].getText().length === 0) {
+                    newNodes.second.detach();
+                    newNodes.second = parent;
+                    emptyText = newNodes.second.append({text: '\u200b'}); // why? why is ZWS needed here?
+                }
             }
 
             return _.extend(newNodes, {emptyText: emptyText});