Make WordPress Core

Ticket #27620: 27620.patch

File 27620.patch, 698 bytes (added by rachelbaker, 11 years ago)

Corrected plupload support check and hide drop-zone area on fallback.

  • src/wp-admin/js/customize-controls.js

     
    198198                                init: function() {
    199199                                        var fallback, button;
    200200
    201                                         if ( this.supports.dragdrop )
     201                                        if ( this.supported )
    202202                                                return;
    203203
    204204                                        // Maintain references while wrapping the fallback button.
    205205                                        fallback = control.container.find( '.upload-fallback' );
    206206                                        button   = fallback.children().detach();
    207207
     208                                        this.dropzone.hide();
    208209                                        this.browser.detach().empty().append( button );
    209210                                        fallback.append( this.browser ).show();
    210211                                }