File size: 404 Bytes
5e4510c |
1 2 3 4 5 6 7 8 9 10 11 12 |
export let width = window.innerWidth;
export let height = window.innerHeight;
export function setWidth(w) { width = w; }
export function setHeight(h) { height = h; }
export function updateDimensions() {
width = window.innerWidth;
const toolbar = document.getElementById('toolbar');
const toolbarHeight = toolbar ? toolbar.offsetHeight : 0;
height = window.innerHeight - toolbarHeight;
}
|