Index: src/js/_enqueues/vendor/tinymce/plugins/wordpress/plugin.js
===================================================================
--- src/js/_enqueues/vendor/tinymce/plugins/wordpress/plugin.js	(revision 49909)
+++ src/js/_enqueues/vendor/tinymce/plugins/wordpress/plugin.js	(working copy)
@@ -16,6 +16,8 @@
 		wpTooltips = false;
 
 	if ( $ ) {
+		// Runs as soon as TinyMCE has started initializing, while plugins are loading.
+		// Handlers attached after the `tinymce.init()` call may not get triggered for this instance.
 		$( document ).triggerHandler( 'tinymce-editor-setup', [ editor ] );
 	}
 
@@ -540,7 +542,11 @@
 		});
 
 		if ( $ ) {
-			$( document ).triggerHandler( 'tinymce-editor-init', [editor] );
+			// Run on DOM ready. Otherwise TinyMCE may initialize earlier and handlers attached
+			// on DOM ready of after the `tinymce.init()` call may not get triggered.
+			$( function() {
+				$( document ).triggerHandler( 'tinymce-editor-init', [editor] );
+			});
 		}
 
 		if ( window.tinyMCEPreInit && window.tinyMCEPreInit.dragDropUpload ) {
