introvoyz041's picture
Migrated from GitHub
5e4510c verified
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;
}