0
Fork 0
mirror of https://github.com/fastmail/Squire.git synced 2024-12-22 07:13:08 -05:00

Fix copying inline styles when selection not on boundary.

Resolves #219 properly this time.
This commit is contained in:
Neil Jenkins 2016-09-09 12:14:57 -04:00
parent 9aacad6e3c
commit 26b71dee8e
3 changed files with 27 additions and 33 deletions

View file

@ -2118,7 +2118,7 @@ var onCopy = function ( event ) {
var range = this.getSelection();
var node = this.createElement( 'div' );
var root = this._root;
var startBlock, contents, parent, newContents;
var startBlock, endBlock, copyRoot, contents, parent, newContents;
// Edge only seems to support setting plain text as of 2016-03-11.
// Mobile Safari flat out doesn't work:
@ -2126,23 +2126,20 @@ var onCopy = function ( event ) {
if ( !isEdge && !isIOS && clipboardData ) {
range = range.cloneRange();
startBlock = getStartBlockOfRange( range, root );
if ( startBlock === getEndBlockOfRange( range, root ) ) {
// Copy all inline formatting, but that's it.
endBlock = getEndBlockOfRange( range, root );
copyRoot = ( startBlock === endBlock ) ? startBlock : root;
moveRangeBoundariesDownTree( range );
moveRangeBoundariesUpTree( range, startBlock );
contents = range.cloneContents();
} else {
moveRangeBoundariesUpTree( range, root );
moveRangeBoundariesUpTree( range, copyRoot );
contents = range.cloneContents();
parent = range.commonAncestorContainer;
while ( parent && parent !== root ) {
while ( parent && parent !== copyRoot ) {
newContents = parent.cloneNode( false );
newContents.appendChild( contents );
contents = newContents;
parent = parent.parentNode;
}
}
node.appendChild( contents );
clipboardData.setData( 'text/html', node.innerHTML );
clipboardData.setData( 'text/plain',
node.innerText || node.textContent );

File diff suppressed because one or more lines are too long

View file

@ -39,7 +39,7 @@ var onCopy = function ( event ) {
var range = this.getSelection();
var node = this.createElement( 'div' );
var root = this._root;
var startBlock, contents, parent, newContents;
var startBlock, endBlock, copyRoot, contents, parent, newContents;
// Edge only seems to support setting plain text as of 2016-03-11.
// Mobile Safari flat out doesn't work:
@ -47,23 +47,20 @@ var onCopy = function ( event ) {
if ( !isEdge && !isIOS && clipboardData ) {
range = range.cloneRange();
startBlock = getStartBlockOfRange( range, root );
if ( startBlock === getEndBlockOfRange( range, root ) ) {
// Copy all inline formatting, but that's it.
endBlock = getEndBlockOfRange( range, root );
copyRoot = ( startBlock === endBlock ) ? startBlock : root;
moveRangeBoundariesDownTree( range );
moveRangeBoundariesUpTree( range, startBlock );
contents = range.cloneContents();
} else {
moveRangeBoundariesUpTree( range, root );
moveRangeBoundariesUpTree( range, copyRoot );
contents = range.cloneContents();
parent = range.commonAncestorContainer;
while ( parent && parent !== root ) {
while ( parent && parent !== copyRoot ) {
newContents = parent.cloneNode( false );
newContents.appendChild( contents );
contents = newContents;
parent = parent.parentNode;
}
}
node.appendChild( contents );
clipboardData.setData( 'text/html', node.innerHTML );
clipboardData.setData( 'text/plain',
node.innerText || node.textContent );