Make WordPress Core

Ticket #40492: 40492.2.diff

File 40492.2.diff, 807 bytes (added by sabernhardt, 3 years ago)

adding spaces around quotes

  • src/wp-content/themes/twentyfifteen/js/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'