adjusted js -> less automatic adjustments going on (for now)

This commit is contained in:
Adriaan Wormgoor 2013-07-26 23:53:07 +02:00
parent 01ce6cf593
commit 7ccfff04f0
1 changed files with 27 additions and 29 deletions

View File

@ -105,11 +105,8 @@ function doOnResize() {
}
}
$("document").ready(function(){
console.log("ready");
initDrawing();
function initLayouting() {
console.log("f:initLayouting()");
// imgDims[0] = parseInt($(".container").css("width").match(/[0-9]+/).join(""));
// imgDims[1] = parseInt($(".container").css("height").match(/[0-9]+/).join(""));
@ -128,8 +125,15 @@ $("document").ready(function(){
// $(".container").css("height", window.innerHeight);
// Initial execution if needed
/* 2013-07-26 not doing this resizing stuff now, it's not working well yet
if (!window.addEventListener) {
window.attachEvent('orientationchange', doOnOrientationChange);
window.attachEvent('resize', doOnResize)
} else {
window.addEventListener('orientationchange', doOnOrientationChange);
window.addEventListener('resize', doOnResize)
}
//*/
doClientAndOrientationStuff();
// doOnOrientationChange();
@ -138,17 +142,11 @@ $("document").ready(function(){
console.log("$('#drawAreaContainer').innerHeight(): " + $("#drawAreaContainer").innerHeight());
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) {
$('#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();
})
})
}