zhouk777's picture
Upload folder using huggingface_hub
ea8c728 verified
Raw
History Blame Contribute Delete
404 Bytes
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;
}