fnp
/
fnpeditor.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
42d1c68
)
prevent empty span in a new node
author
Jan Szejko
<janek37@gmail.com>
Thu, 23 Feb 2017 16:38:04 +0000
(17:38 +0100)
committer
Jan Szejko
<janek37@gmail.com>
Thu, 23 Feb 2017 16:50:22 +0000
(17:50 +0100)
src/editor/plugins/core/core.js
patch
|
blob
|
history
diff --git
a/src/editor/plugins/core/core.js
b/src/editor/plugins/core/core.js
index
bc74e6b
..
9a333d0
100644
(file)
--- a/
src/editor/plugins/core/core.js
+++ b/
src/editor/plugins/core/core.js
@@
-122,6
+122,11
@@
plugin.documentExtension.textNode.transformations = {
parent.contents().some(function(n) {
return move(n, newNode);
});
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});
}
return _.extend(newNodes, {emptyText: emptyText});