Media Grid: don't select `body` with jQuery when instantiating `media.view.UploaderWindow`.

Props ericlewis.
See #28965.


git-svn-id: https://develop.svn.wordpress.org/trunk@29367 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Scott Taylor 2014-08-03 19:36:41 +00:00
parent a1ce4931a1
commit e7eca9d99b
1 changed files with 2 additions and 2 deletions

View File

@ -81,8 +81,8 @@
this.uploader = new media.view.UploaderWindow({
controller: this,
uploader: {
dropzone: $('body'),
container: $('body')
dropzone: document.body,
container: document.body
}
}).render();
this.uploader.ready();