()
| 107 | } |
| 108 | |
| 109 | onAway () { |
| 110 | this.markLastActive() |
| 111 | if (this.running) { |
| 112 | this.awayTimeoutId = setTimeout(() => { |
| 113 | return this.stopTimer({ subtractTimeout: true }) |
| 114 | } |
| 115 | , this.awayTimeoutLimit) |
| 116 | } |
| 117 | } |
| 118 | |
| 119 | onAwayBack () { |
| 120 | clearTimeout(this.awayTimeoutId) |
nothing calls this directly
no test coverage detected