()
| 4 | export function setWidth(w) { width = w; } |
| 5 | export function setHeight(h) { height = h; } |
| 6 | export function updateDimensions() { |
| 7 | width = window.innerWidth; |
| 8 | const toolbar = document.getElementById('toolbar'); |
| 9 | const toolbarHeight = toolbar ? toolbar.offsetHeight : 0; |
| 10 | height = window.innerHeight - toolbarHeight; |
| 11 | } |
nothing calls this directly
no outgoing calls
no test coverage detected