Files
tiptap/packages/core/src/commands/scrollIntoView.ts
2020-09-24 22:21:44 +02:00

16 lines
295 B
TypeScript

import { Command } from '../Editor'
type ScrollIntoViewCommand = () => Command
declare module '../Editor' {
interface Commands {
scrollIntoView: ScrollIntoViewCommand,
}
}
export const scrollIntoView: ScrollIntoViewCommand = () => ({ tr }) => {
tr.scrollIntoView()
return true
}