more RTE fixes

This commit is contained in:
Aviral Dasgupta 2016-06-14 19:28:51 +05:30
parent 8cb086ef31
commit ba69e4365d
2 changed files with 3 additions and 2 deletions

View file

@ -141,7 +141,8 @@ export function modifyText(contentState: ContentState, rangeToReplace: Selection
for(let currentKey = startKey;
currentKey && currentKey !== endKey;
currentKey = contentState.getKeyAfter(currentKey)) {
text += getText(currentKey).substring(startOffset, blockText.length);
let blockText = getText(currentKey);
text += blockText.substring(startOffset, blockText.length);
// from now on, we'll take whole blocks
startOffset = 0;