removed debug-method (thermo and progress (dis)appearing)

This commit is contained in:
Adriaan Wormgoor 2013-10-16 23:20:13 +02:00
parent 69933b3b41
commit b89f2385b8
1 changed files with 0 additions and 17 deletions

View File

@ -98,25 +98,8 @@ $(function() {
}, 1000);
//*/
}
showhideInterval = setInterval(showOrHideThermo, 2500);
});
var showhideInterval;
var showOrHide = false;
function showOrHideThermo() {
console.log("f:showOrHideThermo()");
if (showOrHide) {
thermometer.hide();
progressbar.hide();
} else {
thermometer.show();
progressbar.show();
}
showOrHide = !showOrHide;
}
function settingsLoaded() {
console.log("settingsLoaded");
console.log("autoHeatup: ",settings["printer.heatup.enabled"]);