mirror of
https://github.com/ueberdosis/tiptap.git
synced 2025-01-05 09:37:48 +08:00
10 lines
154 B
TypeScript
10 lines
154 B
TypeScript
|
import { Command } from '../Editor'
|
||
|
|
||
|
export default (): Command => ({ tr, dispatch }) => {
|
||
|
if (dispatch) {
|
||
|
tr.scrollIntoView()
|
||
|
}
|
||
|
|
||
|
return true
|
||
|
}
|