Files
tiptap/packages/core/src/commands/scrollIntoView.ts
2020-11-18 16:43:27 +01:00

13 lines
211 B
TypeScript

import { Command } from '../types'
/**
* Scroll the selection into view.
*/
export const scrollIntoView = (): Command => ({ tr, dispatch }) => {
if (dispatch) {
tr.scrollIntoView()
}
return true
}