Fake a "non-responsive" window width for IE < 9 when folding/unfolding the menu (old IE doesn't support @media), fixes #26458.

Built from https://develop.svn.wordpress.org/trunk@26785


git-svn-id: http://core.svn.wordpress.org/trunk@26672 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Ozz 2013-12-07 18:46:11 +00:00
parent 7192115dca
commit 95a02fbe43
2 changed files with 3 additions and 3 deletions

View File

@ -188,8 +188,8 @@ $(document).ready( function() {
// window.innerWidth is affected by zooming on phones // window.innerWidth is affected by zooming on phones
respWidth = Math.max( window.innerWidth, document.documentElement.clientWidth ); respWidth = Math.max( window.innerWidth, document.documentElement.clientWidth );
} else { } else {
// Exclude IE < 9, it doesn't support @media CSS rules // IE < 9 doesn't support @media CSS rules
return; respWidth = 901;
} }
if ( respWidth && respWidth < 900 ) { if ( respWidth && respWidth < 900 ) {

File diff suppressed because one or more lines are too long