var _dimension=new SelectBox("dimension");_dimension.addEventListener("change",filterSeancesHandler);var _screenType=new SelectBox("screen-type");_screenType.addEventListener("change",filterSeancesHandler);var _language=new SelectBox("language");_language.addEventListener("change",filterSeancesHandler);var _noShowtime=document.getElementById("no-showtime");var _showtimes=document.querySelectorAll(".metadata-card, .seance");function filterSeances(){Modal.open("filter-seances-modal")} function filterSeancesHandler(e){var noShowtime=!0;_noShowtime.classList.add("hide");for(var i=0;i<_showtimes.length;i++){_showtimes[i].classList.add("hide")} var _seances=document.querySelectorAll(".seance");for(var i=0;i<_seances.length;i++){if((_dimension.value=='all'||_seances[i].getAttribute("data-dimension")==_dimension.value)&&(_screenType.value=='all'||_seances[i].getAttribute("data-screen-type")==_screenType.value)&&(_language.value=='all'||_seances[i].getAttribute("data-language")==_language.value)){_seances[i].classList.remove("hide");_seances[i].parentNode.parentNode.parentNode.classList.remove("hide");noShowtime=!1}} if(noShowtime)_noShowtime.classList.remove("hide");}