angular-summernote icon indicating copy to clipboard operation
angular-summernote copied to clipboard

Cannot able to get the selected text along with its formatted html

Open suganyapalani22 opened this issue 5 years ago • 0 comments

When selecting the text, i need to add the outer div with some format, I have used this code, but throws some exceptions,

const range = currentElement.summernote('createRange'); var newrange=range.nativeRange() const newParent = document.createElement('span'); newParent.setAttribute('contenteditable', false); newParent.setAttribute('class', 'freeze-word'); var newtext=newrange.surroundContents(newParent);

The exception, Failed to execute 'surroundContents' on 'Range': The Range has partially selected a non-Text node.

suganyapalani22 avatar Sep 21 '20 04:09 suganyapalani22