Browserify after [32677]

See #30949.


git-svn-id: https://develop.svn.wordpress.org/trunk@32697 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ella Iseulde Van Dorpe 2015-06-06 19:49:24 +00:00
parent c896260f38
commit cb73a0cc1a
1 changed files with 3 additions and 3 deletions

View File

@ -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;
},