(editor: Editor, range = editor.selection)
| 1100 | }, |
| 1101 | |
| 1102 | scrollIntoView(editor: Editor, range = editor.selection) { |
| 1103 | if (!range) return |
| 1104 | const domRange = Editable.toDOMRange(editor, range) |
| 1105 | const focusEl = domRange.endContainer.parentElement! |
| 1106 | scrollIntoView(focusEl, { |
| 1107 | scrollMode: 'if-needed', |
| 1108 | }) |
| 1109 | }, |
| 1110 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…