0
Fork 0
mirror of https://github.com/fastmail/Squire.git synced 2024-12-22 15:23:29 -05:00

Don't trim whitespace if inside another inline node.

This commit is contained in:
Neil Jenkins 2014-05-27 11:36:50 +10:00
parent aca8fd4fab
commit 34d3839ceb
3 changed files with 11 additions and 1 deletions

View file

@ -2460,6 +2460,11 @@ var cleanTree = function ( node, allowStyles ) {
// which are just nbsp, in order to cleanup <div>nbsp<br></div>
// construct.
if ( /\S/.test( data ) ) {
// If the parent node is inline, don't trim this node as
// it probably isn't at the end of the block.
if ( isInline( node ) ) {
continue;
}
j = 0;
ll = data.length;
if ( !i || !isInline( children[ i - 1 ] ) ) {

File diff suppressed because one or more lines are too long

View file

@ -1348,6 +1348,11 @@ var cleanTree = function ( node, allowStyles ) {
// which are just nbsp, in order to cleanup <div>nbsp<br></div>
// construct.
if ( /\S/.test( data ) ) {
// If the parent node is inline, don't trim this node as
// it probably isn't at the end of the block.
if ( isInline( node ) ) {
continue;
}
j = 0;
ll = data.length;
if ( !i || !isInline( children[ i - 1 ] ) ) {