Fix autocomplete again/more. #65

This commit is contained in:
2024-06-06 20:05:24 -04:00
parent 6070bde413
commit 0076eb4ed4
2 changed files with 3 additions and 12 deletions

View File

@ -482,16 +482,7 @@ class TributeRange {
}
getDocument() {
let iframe;
if (this.tribute.current.collection[0].iframe) {
iframe = this.tribute.current.collection[0].iframe;
}
if (!iframe) {
return document
}
return iframe.contentWindow.document
return document;
}
positionMenuAtCaret(scrollTo) {
@ -653,7 +644,7 @@ class TributeRange {
}
getWindowSelection() {
if (this.tribute.collection[0].iframe) {
if (this.tribute.collection[0].iframe?.getSelection) {
return this.tribute.collection[0].iframe.getSelection()
}