tiptap/packages/core/src/commands/scrollIntoView.ts

10 lines
153 B
TypeScript
Raw Normal View History

2020-11-17 04:42:35 +08:00
import { Command } from '../types'
2020-11-05 05:38:52 +08:00
export default (): Command => ({ tr, dispatch }) => {
if (dispatch) {
tr.scrollIntoView()
}
return true
}