(list: TileStyleTarget)
| 195 | } |
| 196 | |
| 197 | override reset(list: TileStyleTarget) { |
| 198 | list._setListStyle(['height', null]); |
| 199 | |
| 200 | if (list._tiles) { |
| 201 | list._tiles.forEach(tile => { |
| 202 | tile._setStyle('top', null); |
| 203 | tile._setStyle('height', null); |
| 204 | }); |
| 205 | } |
| 206 | } |
| 207 | } |
| 208 | |
| 209 | /** |
nothing calls this directly
no test coverage detected