This commit is contained in:
2023-08-08 14:34:32 +03:00
parent 392ea786d1
commit d69e3c6c1f
3 changed files with 6 additions and 5 deletions

View File

@@ -35,9 +35,10 @@ function check_window_tm(){
let intervl = setInterval(function () {
window = document.querySelector(".container-messages")
if (window !== null){
clearInterval(intervl)
checkOpenWindow(window)
if (window === null){
} else {
}
},
1000)