mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-11-02 11:57:04 +08:00
9 lines
226 B
JavaScript
9 lines
226 B
JavaScript
export function screenHeight(){
|
|
const $breadcrumb = document.querySelector(".breadcrumb");
|
|
let size = document.body.clientHeight;
|
|
if($breadcrumb){
|
|
size -= $breadcrumb.clientHeight;
|
|
}
|
|
return size;
|
|
}
|