()
| 85 | } |
| 86 | |
| 87 | protected _start() { |
| 88 | if (this.idle && !checkIdle(this._active)) { |
| 89 | this.idle = false |
| 90 | |
| 91 | each(getPayload(this)!, node => { |
| 92 | node.done = false |
| 93 | }) |
| 94 | |
| 95 | if (G.skipAnimation) { |
| 96 | raf.batchedUpdates(() => this.advance()) |
| 97 | becomeIdle(this) |
| 98 | } else { |
| 99 | frameLoop.start(this) |
| 100 | } |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | // Observe our sources only when we're observed. |
| 105 | protected _attach() { |
no test coverage detected