()
| 1506 | this.timer = Utils.setTimeout(delay, () => this.exit()); |
| 1507 | |
| 1508 | const resetExitTimer = () => { |
| 1509 | clearTimeout(this.timer); |
| 1510 | this.timer = Utils.setTimeout(delay, () => this.exit()); |
| 1511 | }; |
| 1512 | |
| 1513 | this.onExit(() => callback(true)); // true -> isSuccess. |
| 1514 | } |