diff --git a/src/js/media/views/attachments/browser.js b/src/js/media/views/attachments/browser.js
index 4a4289149d..ad8be5b34d 100644
a
|
b
|
AttachmentsBrowser = View.extend(/** @lends wp.media.view.AttachmentsBrowser.pro |
48 | 48 | this.createSidebar(); |
49 | 49 | } |
50 | 50 | |
51 | | /* |
52 | | * For accessibility reasons, place the Inline Uploader before other sections. |
53 | | * This way, in the Media Library, it's right after the Add New button, see ticket #37188. |
54 | | */ |
55 | | this.createUploader(); |
56 | | |
57 | 51 | /* |
58 | 52 | * Create a multi-purpose toolbar. Used as main toolbar in the Media Library |
59 | 53 | * and also for other things, for example the "Drag and drop to reorder" and |
… |
… |
AttachmentsBrowser = View.extend(/** @lends wp.media.view.AttachmentsBrowser.pro |
61 | 55 | */ |
62 | 56 | this.createToolbar(); |
63 | 57 | |
| 58 | // For accessibility reasons, place the inline uploader right after the toolbar, see ticket #48403. |
| 59 | this.createUploader(); |
| 60 | |
64 | 61 | // Add a heading before the attachments list. |
65 | 62 | this.createAttachmentsHeading(); |
66 | 63 | |