(type)
| 33 | |
| 34 | // sets all fitties to dirty so they are redrawn on the next redraw loop, then calls redraw |
| 35 | const redrawAll = (type) => (options) => { |
| 36 | fitties.forEach((f) => (f.dirty = type)); |
| 37 | requestRedraw(options); |
| 38 | }; |
| 39 | |
| 40 | // redraws fitties so they nicely fit their parent container |
| 41 | const redraw = (fitties) => { |
no outgoing calls
no test coverage detected
searching dependent graphs…