Files
tiptap/packages/core/src/commands/blur.ts
2020-11-18 16:43:27 +01:00

13 lines
206 B
TypeScript

import { Command } from '../types'
/**
* Removes focus from the editor.
*/
export const blur = (): Command => ({ view }) => {
const element = view.dom as HTMLElement
element.blur()
return true
}