Index: src/js/media/views/frame/select.js
===================================================================
--- src/js/media/views/frame/select.js	(revision 46392)
+++ src/js/media/views/frame/select.js	(working copy)
@@ -58,6 +58,16 @@
 		};
 	},
 
+	editImageContent: function() {
+		var image = this.state().get('image'),
+			view = new wp.media.view.EditImage( { model: image, controller: this } ).render();
+
+		this.content.set( view );
+
+		// after creating the wrapper view, load the actual editor via an ajax call
+		view.loadEditor();
+	},
+
 	/**
 	 * Create the default states on the frame.
 	 */
@@ -76,7 +86,8 @@
 				multiple:  options.multiple,
 				title:     options.title,
 				priority:  20
-			})
+			}),
+			new wp.media.controller.EditImage( { model: options.editImage, } ),
 		]);
 	},
 
@@ -91,6 +102,7 @@
 		this.on( 'content:create:browse', this.browseContent, this );
 		this.on( 'content:render:upload', this.uploadContent, this );
 		this.on( 'toolbar:create:select', this.createSelectToolbar, this );
+		this.on( 'content:render:edit-image', this.editImageContent, this );
 	},
 
 	/**
