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

10 lines
154 B
TypeScript
Raw Normal View History

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