docs: update content

This commit is contained in:
Philipp Kühn
2021-04-21 10:27:51 +02:00
parent 00fc1d1ae7
commit cc8e879da0

View File

@@ -10,6 +10,9 @@ You can define your event listeners on a new editor instance right-away:
```js ```js
const editor = new Editor({ const editor = new Editor({
onBeforeCreate({ editor }) {
// Before the view is created.
},
onCreate({ editor }) { onCreate({ editor }) {
// The editor is ready. // The editor is ready.
}, },
@@ -39,6 +42,10 @@ Or you can register your event listeners on a running editor instance:
### Bind event listeners ### Bind event listeners
```js ```js
editor.on('beforeCreate', ({ editor }) => {
// Before the view is created.
}
editor.on('create', ({ editor }) => { editor.on('create', ({ editor }) => {
// The editor is ready. // The editor is ready.
} }
@@ -90,6 +97,9 @@ Moving your event listeners to custom extensions (or nodes, or marks) is also po
import { Extension } from '@tiptap/core' import { Extension } from '@tiptap/core'
const CustomExtension = Extension.create({ const CustomExtension = Extension.create({
onBeforeCreate({ editor }) {
// Before the view is created.
},
onCreate({ editor }) { onCreate({ editor }) {
// The editor is ready. // The editor is ready.
}, },