Make WordPress Core

Ticket #21005: 21005.patch

File 21005.patch, 742 bytes (added by azaozz, 12 years ago)
  • wp-admin/js/postbox.dev.js

     
    160160                        switch ( window.orientation ) {
    161161                                case 90:
    162162                                case -90:
    163                                         this._pb_edit(2);
     163                                        if ( $( 'label.columns-prefs-2 input[type="radio"]' ).is(':checked') )
     164                                                this._pb_edit(2);
    164165                                        break;
    165166                                case 0:
    166167                                case 180:
    167                                         if ( $('#poststuff').length )
     168                                        if ( $('#poststuff').length ) {
    168169                                                this._pb_edit(1);
    169                                         else
    170                                                 this._pb_edit(2);
     170                                        } else {
     171                                                if ( $( 'label.columns-prefs-2 input[type="radio"]' ).is(':checked') )
     172                                                        this._pb_edit(2);
     173                                        }
    171174                                        break;
    172175                        }
    173176                },