TinyMCE Dirty Flag is not set or is reset automatically after Editor leaving?
问题 After Configuring the TinyMce Editor and some Functions I want now to Warn the User if he did changes but did not save them. For that Iam Checking the Dirty Flag at Blur. But its always set false . controller.js this.$scope.tinymceOptions = { selector: 'textarea', menubar: false, plugins: 'save', save_enablewhendirty: true, save_onsavecallback: (editor) => { doing here my save stuff }, setup: function(editor) { editor.on('dirty', () => { console.log('dirty woop')//if i do edits its triggered