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:
Ian Stewart 2014-12-10 13:30:24 +00:00
parent 750df27f0e
commit 069e31acab
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@
documentHeight = $document.height();
sidebarHeight = $sidebar.height();
if ( 955 >= windowWidth ) {
if ( 955 > windowWidth ) {
top = bottom = false;
$sidebar.removeAttr( 'style' );
}