Files
tiptap/packages/core/src/commands/scrollIntoView.ts
Philipp Kühn 13a314e123 refactoring
2020-11-16 21:42:35 +01:00

10 lines
153 B
TypeScript

import { Command } from '../types'
export default (): Command => ({ tr, dispatch }) => {
if (dispatch) {
tr.scrollIntoView()
}
return true
}