Fixed caret positioning

This commit is contained in:
SamTV12345 2024-07-13 21:26:57 +02:00 committed by SamTv12345
parent 865f2e565a
commit b7e0e6b216
2 changed files with 3 additions and 3 deletions

View file

@ -3010,7 +3010,7 @@ function Ace2Inner(editorInfo, cssManagers) {
};
}
};
const browserSelection = window.getSelection();
const browserSelection = targetDoc.getSelection();
if (browserSelection) {
browserSelection.removeAllRanges();
if (selection) {
@ -3153,7 +3153,7 @@ function Ace2Inner(editorInfo, cssManagers) {
browserSelection.anchorOffset === range.endOffset,
};
if (selection.startPoint.node.ownerDocument !== window.document) {
if (selection.startPoint.node.ownerDocument !== targetDoc) {
return null;
}