(initial)
| 42 | } |
| 43 | |
| 44 | changed(initial) { |
| 45 | if (this.current.prevCount - this.clearedCount > this.main.params.worklogLimit) { |
| 46 | this.first = this.first.next; |
| 47 | this.first.prev = null; |
| 48 | this.clearedCount += 1; |
| 49 | } |
| 50 | this.changedHandler({ |
| 51 | first: this.current.prev === null, |
| 52 | last: this.current.next === null, |
| 53 | initial, |
| 54 | }); |
| 55 | this.empty = initial; |
| 56 | this.clean = false; |
| 57 | } |
| 58 | |
| 59 | captureState(initial) { |
| 60 | let activeToolName = this.main.activeTool ? this.main.activeTool.name : null; |
no outgoing calls
no test coverage detected