(count: number)
| 149 | |
| 150 | // Start observing our inputs once we have an observer. |
| 151 | protected observerAdded(count: number) { |
| 152 | if (count == 1) |
| 153 | each(this.inputs, input => |
| 154 | each( |
| 155 | input, |
| 156 | value => hasFluidValue(value) && addFluidObserver(value, this) |
| 157 | ) |
| 158 | ) |
| 159 | } |
| 160 | |
| 161 | // Stop observing our inputs once we have no observers. |
| 162 | protected observerRemoved(count: number) { |
no test coverage detected