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

Props ericlewis.
See #28965.

Built from https://develop.svn.wordpress.org/trunk@29367


git-svn-id: http://core.svn.wordpress.org/trunk@29145 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Scott Taylor 2014-08-03 19:37:19 +00:00
parent 2d212cbfac
commit 696c12bc55
2 changed files with 3 additions and 3 deletions

View File

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

File diff suppressed because one or more lines are too long