mirror of
https://github.com/internetarchive/brozzler.git
synced 2025-07-26 00:05:42 -04:00
uncomment; now tested
This commit is contained in:
parent
9e871a9f81
commit
51977908ec
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@ class UmbraBehavior {
|
||||||
} else {
|
} else {
|
||||||
var idleTimeMs = Date.now() - this.idleSince;
|
var idleTimeMs = Date.now() - this.idleSince;
|
||||||
if ((idleTimeMs / 1000) > (this.IDLE_TIMEOUT_SEC - 1) && (this.index < (this.actions.length - 1))) {
|
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.index += 1;
|
||||||
this.idleSince = null;
|
this.idleSince = null;
|
||||||
window.scroll(0,0);
|
window.scroll(0,0);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue