diff --git a/src/wp-includes/js/media-views.js b/src/wp-includes/js/media-views.js
index 16389bf..111bc9d 100644
a
|
b
|
|
3617 | 3617 | }); |
3618 | 3618 | |
3619 | 3619 | /** |
| 3620 | * Creates a dropzone on WP editor instances (elements with .wp-editor-wrap |
| 3621 | * or #wp-fullscreen-body) and relays drag'n'dropped files to a media workflow. |
| 3622 | * |
3620 | 3623 | * wp.media.view.EditorUploader |
3621 | 3624 | * |
3622 | 3625 | * @constructor |
… |
… |
|
3634 | 3637 | overDropzone: false, |
3635 | 3638 | draggingFile: null, |
3636 | 3639 | |
| 3640 | /** |
| 3641 | * Bind drag'n'drop events to callbacks. |
| 3642 | */ |
3637 | 3643 | initialize: function() { |
3638 | 3644 | var self = this; |
3639 | 3645 | |
… |
… |
|
3664 | 3670 | return this; |
3665 | 3671 | }, |
3666 | 3672 | |
| 3673 | /** |
| 3674 | * Check browser support for drag'n'drop. |
| 3675 | * |
| 3676 | * @return Boolean |
| 3677 | */ |
3667 | 3678 | browserSupport: function() { |
3668 | 3679 | var supports = false, div = document.createElement('div'); |
3669 | 3680 | |