Make WordPress Core

Ticket #13524: 13524.patch

File 13524.patch, 513 bytes (added by polevaultweb, 11 years ago)

Added patch to open a closed widget on hover

  • src/wp-admin/js/widgets.js

     
    135135                                        // Prevents jumping when dragging a widget from an open sidebar to a closed sidebar below.
    136136                                        height = ui.item.hasClass('ui-draggable') ? $this.height() : 1 + $this.height();
    137137                                        $this.css( 'min-height', height + 'px' );
     138                                } else {
     139                                        $wrap.removeClass('closed');
    138140                                }
    139141                        },
    140142