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 // some modes and parameters which can be passed in from the URL query
var moveHereFirst; var moveHereFirst;
var expertMode=false var expertMode=true;
var animateChipLayout = true; var animateChipLayout = true;
var userCode=[]; var userCode=[];
var userResetLow; var userResetLow;

View File

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