mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-04-02 21:59:06 +08:00
parent
980a684b14
commit
ff6c5aaecb
@ -445,8 +445,12 @@ export class Actions {
|
|||||||
selectionRange = selectionRange || this.#getSelectionRange();
|
selectionRange = selectionRange || this.#getSelectionRange();
|
||||||
const newDoc = this.editor.cm.state.toText(text);
|
const newDoc = this.editor.cm.state.toText(text);
|
||||||
const newSelectFrom = Math.min(selectionRange.from, newDoc.length);
|
const newSelectFrom = Math.min(selectionRange.from, newDoc.length);
|
||||||
|
const scrollTop = this.editor.cm.scrollDOM.scrollTop;
|
||||||
this.#dispatchChange(0, this.editor.cm.state.doc.length, text, newSelectFrom);
|
this.#dispatchChange(0, this.editor.cm.state.doc.length, text, newSelectFrom);
|
||||||
this.focus();
|
this.focus();
|
||||||
|
window.requestAnimationFrame(() => {
|
||||||
|
this.editor.cm.scrollDOM.scrollTop = scrollTop;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user