Fix autocomplete again/more. #65

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

View File

@ -1,5 +1,5 @@
{
"type": "tildefriends-app",
"emoji": "🐌",
"previous": "&RGDjjNsX3jYJFpOcDyI+LH2qmscuY0q8gP4dyJjOtww=.sha256"
"previous": "&Tqgx33F75cRAv5Cb0HsRPmc+HabRA8qnTjgMPr1PJ9Q=.sha256"
}

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()
}