Index: src/wp-includes/js/mce-view.js
===================================================================
--- src/wp-includes/js/mce-view.js	(revision 28780)
+++ src/wp-includes/js/mce-view.js	(working copy)
@@ -417,7 +417,9 @@
 				this.shortcode = options.shortcode;
 				_.bindAll( this, 'setPlayer', 'pausePlayers' );
 				$( this ).on( 'ready', this.setPlayer );
-				$( 'body' ).on( 'click', '.wp-switch-editor', this.pausePlayers );
+				$( this ).on( 'ready', function( event, editor ) {
+					editor.on( 'hide', this.pausePlayers );
+				} );
 				$( document ).on( 'media:edit', this.pausePlayers );
 			},
 
@@ -558,7 +560,9 @@
 				this.attachments = [];
 				this.shortcode = options.shortcode;
 
-				$( 'body' ).on( 'click', '.wp-switch-editor', this.pausePlayers );
+				$( this ).on( 'ready', function( event, editor ) {
+					editor.on( 'hide', this.pausePlayers );
+				} );
 				$( document ).on( 'media:edit', this.pausePlayers );
 
 				this.fetch();
