0
0
mirror of https://github.com/Doodle3D/doodle3d-client.git synced 2024-11-21 17:07:55 +01:00

small change improving the resizing on iPads

This commit is contained in:
Adriaan Wormgoor 2013-08-16 22:26:32 +02:00
parent 39157ab392
commit aa82d6daa8

View File

@ -26,6 +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;
}
} else if($(window).width()) {
ww = $(window).width();
} else {