![javascript](https://habrastorage.org/r/w120/webt/59/cc/76/59cc7600c78a2239379574.jpeg)
JavaScript
33
Вклад в тег
const onOpen = () => {
// проверяем есть ли скролл у html
if(document.documentElement.scrollHeight !== document.documentElement.clientHeight){
document.documentElement.style = 'overflow: hidden;'
document.body.style = 'overflow-y: scroll;'
} else {
document.documentElement.style = 'overflow: hidden;'
}
}
const onClose = () => {
document.documentElement.removeAttribute('style');
document.body.removeAttribute('style')
}