{"version":3,"sources":["webpack://@verndale/toolkit/./src/js/modules/video-row.js"],"names":[],"mappings":"6KAEA,MAAM,SAAe,KAAU,CAC7B,eAAgB,CACd,KAAK,IAAM,CACT,WAAY,KAAK,GAAG,GAAG,mBAAmB,EAC1C,MAAO,KAAK,GAAG,GAAG,kBAAkB,CACtC,CACF,CAEA,cAAe,CACb,KAAK,IAAI,MAAM,IAAI,QAAS,KAAK,YAAY,KAAK,IAAI,CAAC,CACzD,CAEA,aAAc,CACZ,KAAM,GAAK,KAAK,GAAG,QAAQ,QACrB,EAAS,SAAS,cAAc,QAAQ,EAC9C,EAAO,aAAa,kBAAmB,EAAE,EACzC,EAAO,IAAM,wCAAwC,kBACrD,KAAK,IAAI,WAAW,OAAO,CAAM,CACnC,CACF,CAEA,QAAe,C","file":"scripts/863.94556e3dbfe3daf2acba.js","sourcesContent":["import { Component } from '@verndale/core';\n\nclass Module extends Component {\n setupDefaults() {\n this.dom = {\n $container: this.el._$('.video-row__inner'),\n $play: this.el._$('.video-row__play')\n };\n }\n\n addListeners() {\n this.dom.$play._on('click', this.renderVideo.bind(this));\n }\n\n renderVideo() {\n const id = this.el.dataset.videoId;\n const iframe = document.createElement('iframe');\n iframe.setAttribute('allowfullscreen', '');\n iframe.src = `https://fast.wistia.com/embed/iframe/${id}?autoPlay=true`;\n this.dom.$container.append(iframe);\n }\n}\n\nexport default Module;\n"],"sourceRoot":""}