Merge branch 'ARI-5995-min' into qa

This commit is contained in:
Barbara Miller 2019-10-15 16:00:29 -07:00
commit cd30ba8bfa

View File

@ -100,7 +100,7 @@ class UmbraBehavior {
}
if (didSomething && limit && limit === i+1) {
nextAction();
this.nextAction();
break;
}
}
@ -122,7 +122,7 @@ class UmbraBehavior {
} else {
var idleTimeMs = Date.now() - this.idleSince;
if ((idleTimeMs / 1000) > (this.IDLE_TIMEOUT_SEC - 1) && (this.index < (this.actions.length - 1))) {
nextAction();
this.nextAction();
}
}
}