Index: wp-includes/js/media-views.js
===================================================================
--- wp-includes/js/media-views.js	(revision 24260)
+++ wp-includes/js/media-views.js	(working copy)
@@ -689,7 +689,12 @@
 
 			// If we haven't been provided a `library`, create a `Selection`.
 			if ( ! this.get('library') )
-				this.set( 'library', media.query({ type: 'image' }) );
+				this.set( 'library', media.query( {
+					type: 'image',
+					uploadedTo: media.view.settings.post.id,
+					orderby: 'menuOrder',
+					order: 'ASC'
+				} ) );
 
 			media.controller.Library.prototype.initialize.apply( this, arguments );
 
@@ -1475,7 +1480,11 @@
 
 			_.defaults( this.options, {
 				selection: [],
-				library:   {},
+				library: {
+					uploadedTo: media.view.settings.post.id,
+					orderby:    'menuOrder',
+					order:      'ASC'
+				},
 				multiple:  false,
 				state:    'library'
 			});
