This commit is contained in:
j3d1 2024-06-06 21:08:57 +02:00
parent b033a6d877
commit f4884da562

View file

@ -90,12 +90,15 @@ export default {
value() { value() {
if (this.selection) { if (this.selection) {
const div = this.$refs.text; const div = this.$refs.text;
const sel = window.getSelection();
sel.removeAllRanges();
const range = document.createRange(); const range = document.createRange();
console.log(this.selection); console.log(this.selection);
range.setStart(...this.findNode(div, this.selection.start)); range.setStart(...this.findNode(div, this.selection.start));
range.setEnd(...this.findNode(div, this.selection.end)); range.setEnd(...this.findNode(div, this.selection.end));
this.selection.removeAllRanges(); sel.addRange(range);
this.selection.addRange(range); //this.selection.removeAllRanges();
//this.selection.addRange(range);
} }
} }
} }