Index: wp-includes/js/media-editor.js
===================================================================
--- wp-includes/js/media-editor.js	(revision 22983)
+++ wp-includes/js/media-editor.js	(working copy)
@@ -304,7 +304,7 @@
 					editing:   true,
 					multiple:  true,
 					selection: selection
-				});
+				}).open();
 
 				return this.frame;
 			}
Index: wp-includes/js/media-views.js
===================================================================
--- wp-includes/js/media-views.js	(revision 22983)
+++ wp-includes/js/media-views.js	(working copy)
@@ -1141,6 +1141,14 @@
 			this.on( 'attach', _.bind( this.views.ready, this.views ), this );
 		},
 
+		render: function() {
+			// Activate the default state if no active state exists.
+			if ( ! this.state() && this.options.state )
+				this.setState( this.options.state );
+
+			return media.view.Frame.prototype.render.apply( this, arguments );
+		},
+
 		createIframeStates: function( options ) {
 			var settings = media.view.settings,
 				tabs = settings.tabs,
