From cb73a0cc1a23b4655891a3d05327e7cdc4427fec Mon Sep 17 00:00:00 2001 From: Ella Iseulde Van Dorpe Date: Sat, 6 Jun 2015 19:49:24 +0000 Subject: [PATCH] Browserify after [32677] See #30949. git-svn-id: https://develop.svn.wordpress.org/trunk@32697 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/js/media-views.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/wp-includes/js/media-views.js b/src/wp-includes/js/media-views.js index fc29b3e894..304373c140 100644 --- a/src/wp-includes/js/media-views.js +++ b/src/wp-includes/js/media-views.js @@ -7747,8 +7747,8 @@ module.exports = Select; /*globals wp, _, jQuery */ /** - * Creates a dropzone on WP editor instances (elements with .wp-editor-wrap - * or #wp-fullscreen-body) and relays drag'n'dropped files to a media workflow. + * Creates a dropzone on WP editor instances (elements with .wp-editor-wrap) + * and relays drag'n'dropped files to a media workflow. * * wp.media.view.EditorUploader * @@ -7855,7 +7855,7 @@ EditorUploader = View.extend({ } View.prototype.render.apply( this, arguments ); - $( '.wp-editor-wrap, #wp-fullscreen-body' ).each( _.bind( this.attach, this ) ); + $( '.wp-editor-wrap' ).each( _.bind( this.attach, this ) ); return this; },