mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-12 03:13:12 +01:00
8 lines
226 B
JavaScript
8 lines
226 B
JavaScript
export function screenHeight(){
|
|
const $breadcrumb = document.querySelector(".breadcrumb");
|
|
let size = document.body.clientHeight;
|
|
if($breadcrumb){
|
|
size -= $breadcrumb.clientHeight;
|
|
}
|
|
return size;
|
|
}
|