Skip to content

Commit

Permalink
TinyMCE add missing event listener (#42321)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fedik authored Nov 8, 2023
1 parent 9a0c7ff commit 6eff78c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion plugins/editors/tinymce/src/Extension/TinyMCE.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,10 @@ final class TinyMCE extends CMSPlugin implements SubscriberInterface
*/
public static function getSubscribedEvents(): array
{
return ['onEditorSetup' => 'onEditorSetup'];
return [
'onEditorSetup' => 'onEditorSetup',
'onAjaxTinymce' => 'onAjaxTinymce',
];
}

/**
Expand Down

0 comments on commit 6eff78c

Please sign in to comment.