@tiptap/core 2.7.3 → 2.7.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +6 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +6 -0
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
- package/src/Editor.ts +7 -0
package/dist/index.js
CHANGED
|
@@ -4432,6 +4432,12 @@ class Editor extends EventEmitter {
|
|
|
4432
4432
|
destroy() {
|
|
4433
4433
|
this.emit('destroy');
|
|
4434
4434
|
if (this.view) {
|
|
4435
|
+
// Cleanup our reference to prevent circular references which caused memory leaks
|
|
4436
|
+
// @ts-ignore
|
|
4437
|
+
const dom = this.view.dom;
|
|
4438
|
+
if (dom && dom.editor) {
|
|
4439
|
+
delete dom.editor;
|
|
4440
|
+
}
|
|
4435
4441
|
this.view.destroy();
|
|
4436
4442
|
}
|
|
4437
4443
|
this.removeAllListeners();
|