We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67f3f4b commit 68651b5Copy full SHA for 68651b5
src/View/Components/Editor.php
@@ -93,6 +93,7 @@ public function render(): View|Closure|string
93
94
setup: function(editor) {
95
editor.on('keyup', (e) => value = editor.getContent())
96
+ editor.on('change', (e) => value = editor.getContent())
97
editor.on('init', () => editor.setContent(value ?? ''))
98
editor.on('OpenWindow', (e) => tinymce.activeEditor.topLevelWindow = e.dialog)
99
},
0 commit comments