stash
This commit is contained in:
parent
98366c8909
commit
e2cfe70af7
1 changed files with 2 additions and 2 deletions
|
@ -41,8 +41,8 @@ export default {
|
|||
if (this.selection) {
|
||||
const div = this.$refs.text;
|
||||
const range = document.createRange();
|
||||
range.setStart(div.childNodes[0], this.selection.anchorOffset);
|
||||
range.setEnd(div.childNodes[0], Math.min(this.selection.anchorOffset, div.childNodes[0].length));
|
||||
range.setStart(div.childNodes[0], Math.min(this.selection.anchorOffset, div.childNodes[0].length));
|
||||
range.setEnd(div.childNodes[0], Math.min(this.selection.focusOffset, div.childNodes[0].length));
|
||||
this.selection.removeAllRanges();
|
||||
this.selection.addRange(range);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue