uncomment; now tested

This commit is contained in:
Barbara Miller 2018-03-20 10:39:14 -07:00
parent 9e871a9f81
commit 51977908ec

View File

@ -104,7 +104,7 @@ class UmbraBehavior {
} else {
var idleTimeMs = Date.now() - this.idleSince;
if ((idleTimeMs / 1000) > (this.IDLE_TIMEOUT_SEC - 1) && (this.index < (this.actions.length - 1))) {
console.log("ready for next action"); // untested!
console.log("ready for next action");
this.index += 1;
this.idleSince = null;
window.scroll(0,0);