{"version":3,"sources":["webpack:///./handlers/faq.js"],"names":["$","jQuery","faq","$wrapperEl","$questionToggleButtons","find","handleQuestionToggle","e","preventDefault","$target","currentTarget","$itemContainer","closest","toggleClass","on","window","location","hash","length","stop","animate","offset","top","height"],"mappings":";;;;;;;;;;AAAA;AAAA;AAAA,IAAMA,CAAC,GAAGC,MAAV;;AAEA,IAAMC,GAAG,GAAG,SAANA,GAAM,CAACC,UAAD,EAAgB;EACxB,IAAMC,sBAAsB,GAAGD,UAAU,CAACE,IAAX,CAAgB,uBAAhB,CAA/B;;EAEA,IAAMC,oBAAoB,GAAG,SAAvBA,oBAAuB,CAACC,CAAD,EAAO;IAChCA,CAAC,CAACC,cAAF;IACA,IAAMC,OAAO,GAAGT,CAAC,CAACO,CAAC,CAACG,aAAH,CAAjB;IACA,IAAMC,cAAc,GAAGF,OAAO,CAACG,OAAR,CAAgB,gBAAhB,CAAvB;IACAD,cAAc,CAACE,WAAf,CAA2B,kBAA3B;EACH,CALD;;EAOAT,sBAAsB,CAACU,EAAvB,CAA0B,OAA1B,EAAmCR,oBAAnC,EAVwB,CAYxB;;EACA,IAAIS,MAAM,CAACC,QAAP,CAAgBC,IAApB,EAA0B;IACtB,IAAMR,OAAO,GAAGT,CAAC,CAACe,MAAM,CAACC,QAAP,CAAgBC,IAAjB,CAAjB;;IACA,IAAG,CAACR,OAAO,CAACS,MAAZ,EAAoB;MAChB;IACH;;IAEDT,OAAO,CAACI,WAAR,CAAoB,kBAApB;IAEAb,CAAC,CAAC,YAAD,CAAD,CAAgBmB,IAAhB,GAAuBC,OAAvB,CAA+B;MAC3B,aAAaX,OAAO,CAACY,MAAR,GAAiBC,GAAjB,GAAuBb,OAAO,CAACc,MAAR,KAAmB;IAD5B,CAA/B,EAEG,GAFH;EAGH;AACJ,CAzBD;;AA2BerB,kEAAf","file":"faq.js","sourcesContent":["const $ = jQuery;\n\nconst faq = ($wrapperEl) => {\n    const $questionToggleButtons = $wrapperEl.find('.js-toggle-faq-button');\n\n    const handleQuestionToggle = (e) => {\n        e.preventDefault();\n        const $target = $(e.currentTarget);\n        const $itemContainer = $target.closest('.js-toggle-faq');\n        $itemContainer.toggleClass('js-toggle-active');\n    };\n\n    $questionToggleButtons.on('click', handleQuestionToggle);\n\n    // scroll to and open appropriate question if we have an anchor in url\n    if (window.location.hash) {\n        const $target = $(window.location.hash);\n        if(!$target.length) {\n            return\n        }\n\n        $target.toggleClass('js-toggle-active');\n\n        $('html, body').stop().animate({\n            'scrollTop': $target.offset().top - $target.height() * 1.5\n        }, 500);\n    }\n};\n\nexport default faq;\nexport {\n    faq\n};\n"],"sourceRoot":""}