Twenty Fifteen: less than or equal to is incorrect here when the sidebar only appears at 955px -- it should be less than for removal of inline styles.
Props iamtakashi, fixes #30656 git-svn-id: https://develop.svn.wordpress.org/trunk@30804 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
750df27f0e
commit
069e31acab
@ -57,7 +57,7 @@
|
||||
documentHeight = $document.height();
|
||||
sidebarHeight = $sidebar.height();
|
||||
|
||||
if ( 955 >= windowWidth ) {
|
||||
if ( 955 > windowWidth ) {
|
||||
top = bottom = false;
|
||||
$sidebar.removeAttr( 'style' );
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user