Ticket #21005: 21005.patch
File 21005.patch, 742 bytes (added by , 12 years ago) |
---|
-
wp-admin/js/postbox.dev.js
160 160 switch ( window.orientation ) { 161 161 case 90: 162 162 case -90: 163 this._pb_edit(2); 163 if ( $( 'label.columns-prefs-2 input[type="radio"]' ).is(':checked') ) 164 this._pb_edit(2); 164 165 break; 165 166 case 0: 166 167 case 180: 167 if ( $('#poststuff').length ) 168 if ( $('#poststuff').length ) { 168 169 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 } 171 174 break; 172 175 } 173 176 },