{"version":3,"sources":["webpack:///./widgets/judgesContainerBlock.js"],"names":["JudgesContainerBlock","$el","_classCallCheck","this","key","value","setJudgesContainerBlock","$","find","WG","slick","slidesToShow","slidesToScroll","dots","responsive","breakpoint","settings","arrows"],"mappings":"+2BAIA,IASaA,EAAoB,WAI/B,O,EAHD,SAAAA,EAAYC,I,4FAAKC,CAAA,KAAAF,GAEhBG,KAAKF,IAAMA,I,EACX,EAAAG,IAAA,OAAAC,MAED,WACCF,KAAKG,4BACL,CAAAF,IAAA,0BAAAC,MAED,WAEaE,EAAEJ,KAAKF,KACFO,KAAKC,gCAmBfC,MAjBS,CACfC,aAAc,EACdC,eAAgB,EAChBC,MAAM,EACNC,WAAY,CACX,CACCC,WAAY,IACZC,SAAU,CACTH,MAAM,EACNI,QAAQ,EACRN,aAAc,EACdC,eAAgB,Y,0FA1BW,I","file":"46.js","sourcesContent":["/* eslint-disable comma-dangle */\n/* eslint-disable max-len */\n/* eslint-disable no-unused-vars */\n// CONSTANTS are all caps.\nconst NS = 'JudgesContainerBlock';\nconst CLS = 'judgesContainerBlock';\nconst WG = '.' + CLS + '-';\n\n// Import stuff here if you need to or even better to import them dynamically\n// for ex. of dynamic import check out src/scripts/loadWg/judgesContainerBlock.js using Webpack dynamic imports as chunks.\n// import $ from 'jquery'\nimport slick from 'slick-carousel';\n\nexport class JudgesContainerBlock {\n\tconstructor($el) {\n\t\t// $el is the widget node return by the loadJudgesContainerBlock function\n\t\tthis.$el = $el;\n\t}\n\n\tinit() {\n\t\tthis.setJudgesContainerBlock();\n\t}\n\n\tsetJudgesContainerBlock() {\n\t\t// Add Some logic here\n\t\tconst $wg = $(this.$el);\n\t\tlet judges = $wg.find(WG + 'judges');\n\n\t\tconst options = {\n\t\t\tslidesToShow: 4,\n\t\t\tslidesToScroll: 4,\n\t\t\tdots: false,\n\t\t\tresponsive: [\n\t\t\t\t{\n\t\t\t\t\tbreakpoint: 769,\n\t\t\t\t\tsettings: {\n\t\t\t\t\t\tdots: true,\n\t\t\t\t\t\tarrows: false,\n\t\t\t\t\t\tslidesToShow: 1,\n\t\t\t\t\t\tslidesToScroll: 1\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t]\n\t\t};\n\n\t\tjudges.slick(options);\n\t}\n\n\t// Add more functions like on above here\n}\n"],"sourceRoot":""}