import { vCarousel } from "./vCarousel"; try { var videosContainers = ["vFunanbule", "vForgeron", "vCircuit"]; var testvCarousel_1 = new vCarousel(); testvCarousel_1.vContainers = videosContainers; if (window.location.hash !== undefined && window.location.hash !== "") testvCarousel_1.firstVideoId = window.location.hash.replace("#", ""); testvCarousel_1.run(); var selectLinks = document.querySelectorAll(".selectVideo"); var _loop_1 = function (i) { var link = selectLinks[i]; link.addEventListener("click", function (e) { testvCarousel_1.firstVideoId = link.hash.replace("#", ""); testvCarousel_1.playFirstVideo = true; testvCarousel_1.run(); }); }; for (var i = 0; i < selectLinks.length; i++) { _loop_1(i); } } catch (e) { console.error(e); }