Index: wp-includes/js/media-views.js
===================================================================
--- wp-includes/js/media-views.js	(revision 23055)
+++ wp-includes/js/media-views.js	(working copy)
@@ -3111,7 +3111,8 @@
 				refreshSensitivity: 200,
 				refreshThreshold:   3,
 				AttachmentView:     media.view.Attachment,
-				sortable:           false
+				sortable:           false,
+				resize:             true
 			});
 
 			this._viewsByCid = {};
@@ -3140,7 +3141,8 @@
 			_.bindAll( this, 'css' );
 			this.model.on( 'change:edge change:gutter', this.css, this );
 			this._resizeCss = _.debounce( _.bind( this.css, this ), this.refreshSensitivity );
-			$(window).on( 'resize.attachments', this._resizeCss );
+			if ( this.options.resize )
+				$(window).on( 'resize.attachments', this._resizeCss );
 			this.css();
 		},
 
@@ -3170,7 +3172,6 @@
 			if ( ! this.$el.is(':visible') )
 				return edge;
 
-
 			gutter  = this.model.get('gutter') * 2;
 			width   = this.$el.width() - gutter;
 			columns = Math.ceil( width / ( edge + gutter ) );
@@ -3672,6 +3673,7 @@
 				collection: this.collection,
 				selection:  this.collection,
 				sortable:   true,
+				resize:     false,
 				model:      new Backbone.Model({
 					edge:   40,
 					gutter: 5
