new links no longer apply to entire paragraph

This commit is contained in:
Daniel Yahalom 2023-04-24 13:49:59 -05:00 committed by Niels De Graef
parent 0091d6e8f7
commit e84611d41d

View file

@ -724,7 +724,7 @@ let SelectionUtil = {
var ranges = [];
let len = selection.rangeCount;
for (let i = 0; i < len; ++i) {
ranges.push(selection.getRangeAt(i));
ranges.push(selection.getRangeAt(i).cloneRange());
}
return ranges;
},