diff --git a/src/js/media/views/attachments/browser.js b/src/js/media/views/attachments/browser.js
index a757a47f50..4d78d44ce6 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 | /* |
| 59 | * For accessibility reasons, place the Inline Uploader before other sections. |
| 60 | * This way, in the Media Library, it's right after the Add New button, see ticket #37188. |
| 61 | */ |
| 62 | this.createUploader(); |
| 63 | |
64 | 64 | // Add a heading before the attachments list. |
65 | 65 | this.createAttachmentsHeading(); |
66 | 66 | |