Files
tiptap/packages/core/src/plugins/editable.ts
2020-09-24 00:29:05 +02:00

10 lines
228 B
TypeScript

import { Plugin, PluginKey } from 'prosemirror-state'
import Editor from '../..'
export default (editor: Editor) => new Plugin({
key: new PluginKey('editable'),
props: {
editable: () => editor.options.editable,
},
})