use expertMode to suppress loglist actions in kiosk mode

This commit is contained in:
BigEd 2010-11-08 09:03:13 +00:00
parent 678acd6dc5
commit 369a188ad9
2 changed files with 3 additions and 2 deletions

View File

@ -52,7 +52,7 @@ var drawlayers = [true, true, true, true, true, true];
// some modes and parameters which can be passed in from the URL query
var moveHereFirst;
var expertMode=false
var expertMode=true;
var animateChipLayout = true;
var userCode=[];
var userResetLow;

View File

@ -157,7 +157,8 @@ function initChip(){
refresh();
cycle = 0;
trace = Array();
updateLogList();
if(typeof expertMode != "undefined")
updateLogList();
chipStatus();
if(ctrace)console.log('initChip done after', now()-start);
}