Make WordPress Core

Ticket #40492: #40492.2.patch

File #40492.2.patch, 690 bytes (added by rehanali, 3 years ago)

Added patch

  • functions.js

     
    9999                var windowPos = $window.scrollTop(),
    100100                        windowHeight = $window.height(),
    101101                        sidebarHeight = $sidebar.height(),
    102                         bodyHeight = $body.height();
     102                        pageHeight = $( '#page' ).height();
    103103
    104                 if( 955 < $window.width() && bodyHeight > sidebarHeight && ( windowPos + windowHeight ) >= sidebarHeight ) {
     104                if( 955 < $window.width() && pageHeight > sidebarHeight && ( windowPos + windowHeight ) >= sidebarHeight ) {
    105105                        $sidebar.css({
    106106                                position: 'fixed',
    107107                                bottom: sidebarHeight > windowHeight ? 0 : 'auto'