Make WordPress Core

Ticket #16643: this-works.diff

File this-works.diff, 675 bytes (added by solarissmoke, 15 years ago)
  • wp-admin/js/postbox.dev.js

     
    8282                init : function(page, args) {
    8383                        $.extend( this, args || {} );
    8484                        $('#wpbody-content').css('overflow','hidden');
    85                         $('.meta-box-sortables').sortable({
     85                        // Bug #16643
     86                        var selector = ( $.browser.msie && parseInt( $.browser.version ) <= 8 ) ? '.meta-box-sortables:not(#side-sortables)' : '.meta-box-sortables';
     87                        $(selector).sortable({
    8688                                placeholder: 'sortable-placeholder',
    8789                                connectWith: '.meta-box-sortables',
    8890                                items: '.postbox',