Advertisement
VladislavNechepaev

Untitled

Sep 13th, 2021
915
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. if (parkingActive && parkingLvivNoCurrentWeek) {
  2.           const parkingElems = document.getElementsByClassName("parkingwrapper")
  3.           if (values.office === "Lviv_test") {
  4.             for (let item of parkingElems) {
  5.               item.style.display = "none"
  6.             }
  7.           } else {
  8.             for (let item of parkingElems) {
  9.               item.style.display = "inline-flex"
  10.             }
  11.           }
  12.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement