temp rollback to fix the iPad freaking out onOrientationChange event

This commit is contained in:
Adriaan Wormgoor 2013-08-16 23:10:05 +02:00
parent 93a4bc2fd3
commit 62689b007c
2 changed files with 4 additions and 4 deletions

View File

@ -26,9 +26,9 @@ function doClientAndOrientationStuff() {
var ww = 0; //get proper width
if (window.screen.availWidth) {
ww = window.screen.availWidth;
if( /iPhone|iPad|iPod/i.test(navigator.userAgent) ) {
ww = window.innerWidth;
}
// if( /iPhone|iPad|iPod/i.test(navigator.userAgent) ) {
// ww = window.innerWidth;
// }
} else if($(window).width()) {
ww = $(window).width();
} else {