This commit is contained in:
2023-11-11 15:30:32 +03:00
parent 95c3c062fd
commit 335af09596
3 changed files with 11 additions and 4 deletions

View File

@@ -791,8 +791,8 @@ function closeOverlay () {
// nothing to do
} else {
let overlay = document.querySelector(".block_overlay")
overlay.classList.toggle('hidden')
overlay.classList.toggle('show')
overlay.classList.add('hidden')
overlay.classList.remove('show')
}
}
@@ -816,6 +816,8 @@ function getInfoCurtain (curtain,zIndex,name) {
let type_curt = getTypeOfData(curtain)
if (curtain[0] && type_curt === 'object'){
curtain_f_w = curtain[0]
} else {
curtain_f_w = curtain
}