mirror of
https://github.com/Doodle3D/doodle3d-client.git
synced 2024-11-22 09:17:56 +01:00
adjusted js -> less automatic adjustments going on (for now)
This commit is contained in:
parent
01ce6cf593
commit
7ccfff04f0
@ -105,50 +105,48 @@ function doOnResize() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function initLayouting() {
|
||||||
|
console.log("f:initLayouting()");
|
||||||
|
|
||||||
$("document").ready(function(){
|
// imgDims[0] = parseInt($(".container").css("width").match(/[0-9]+/).join(""));
|
||||||
console.log("ready");
|
// imgDims[1] = parseInt($(".container").css("height").match(/[0-9]+/).join(""));
|
||||||
|
|
||||||
initDrawing();
|
|
||||||
|
|
||||||
// imgDims[0] = parseInt($(".container").css("width").match(/[0-9]+/).join(""));
|
|
||||||
// imgDims[1] = parseInt($(".container").css("height").match(/[0-9]+/).join(""));
|
|
||||||
|
|
||||||
imgDims = [1024, 768];
|
imgDims = [1024, 768];
|
||||||
/*
|
/*
|
||||||
if( /Android|webOS|BlackBerry/i.test(navigator.userAgent) ) {
|
if( /Android|webOS|BlackBerry/i.test(navigator.userAgent) ) {
|
||||||
imgDims[1] = parseInt($(".container").css("height").match(/[0-9]+/).join(""));
|
imgDims[1] = parseInt($(".container").css("height").match(/[0-9]+/).join(""));
|
||||||
} else if ( /iPhone|iPad|iPod/i.test(navigator.userAgent) ) {
|
} else if ( /iPhone|iPad|iPod/i.test(navigator.userAgent) ) {
|
||||||
imgDims[1] = parseInt($(".container").css("width").match(/[0-9]+/).join(""));
|
imgDims[1] = parseInt($(".container").css("width").match(/[0-9]+/).join(""));
|
||||||
} else {
|
} else {
|
||||||
imgDims[1] = parseInt($(".container").css("height").match(/[0-9]+/).join(""));
|
imgDims[1] = parseInt($(".container").css("height").match(/[0-9]+/).join(""));
|
||||||
}
|
}
|
||||||
//*/
|
//*/
|
||||||
|
|
||||||
// $(".container").css("height", window.innerHeight);
|
// $(".container").css("height", window.innerHeight);
|
||||||
|
|
||||||
// Initial execution if needed
|
// Initial execution if needed
|
||||||
window.addEventListener('orientationchange', doOnOrientationChange);
|
/* 2013-07-26 not doing this resizing stuff now, it's not working well yet
|
||||||
window.addEventListener('resize', doOnResize)
|
if (!window.addEventListener) {
|
||||||
|
window.attachEvent('orientationchange', doOnOrientationChange);
|
||||||
|
window.attachEvent('resize', doOnResize)
|
||||||
|
} else {
|
||||||
|
window.addEventListener('orientationchange', doOnOrientationChange);
|
||||||
|
window.addEventListener('resize', doOnResize)
|
||||||
|
}
|
||||||
|
//*/
|
||||||
doClientAndOrientationStuff();
|
doClientAndOrientationStuff();
|
||||||
// doOnOrientationChange();
|
// doOnOrientationChange();
|
||||||
|
|
||||||
// window.innerHeight
|
// window.innerHeight
|
||||||
console.log("window.innerHeight: " + window.innerHeight);
|
console.log("window.innerHeight: " + window.innerHeight);
|
||||||
console.log("$('#drawAreaContainer').innerHeight(): " + $("#drawAreaContainer").innerHeight());
|
console.log("$('#drawAreaContainer').innerHeight(): " + $("#drawAreaContainer").innerHeight());
|
||||||
console.log("$('#drawAreaContainer').offset().top: " + $("#drawAreaContainer").offset().top);
|
console.log("$('#drawAreaContainer').offset().top: " + $("#drawAreaContainer").offset().top);
|
||||||
|
|
||||||
|
|
||||||
|
/* 2013-07-26 not doing this resizing stuff now, it's not working well yet
|
||||||
if (window.innerHeight < 768) {
|
if (window.innerHeight < 768) {
|
||||||
$('#drawAreaContainer').innerHeight(window.innerHeight - $("#drawAreaContainer").offset().top - 70);
|
$('#drawAreaContainer').innerHeight(window.innerHeight - $("#drawAreaContainer").offset().top - 70);
|
||||||
}
|
}
|
||||||
|
//*/
|
||||||
|
|
||||||
// DEBUG
|
}
|
||||||
// $(".agentInfo").css("display", "none");
|
|
||||||
$(".debugBtn").click(function(e) {
|
|
||||||
console.log("debugClick");
|
|
||||||
$(".agentInfo").toggleClass("agentInfoToggle");
|
|
||||||
e.preventDefault();
|
|
||||||
})
|
|
||||||
|
|
||||||
})
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user