{"version":3,"sources":["webpack:///./widgets/textFeature.js"],"names":["CLS","TextFeature","$el","_classCallCheck","this","key","value","setTextFeature","wg","$","text","trim","firstLetter","substring","html","concat"],"mappings":"+1BACA,IACMA,EAAM,cAQCC,EAAW,WAKtB,O,EAHD,SAAAA,EAAYC,I,4FAAKC,CAAA,KAAAF,GAEhBG,KAAKF,IAAMA,I,EACX,EAAAG,IAAA,OAAAC,MAED,WACCF,KAAKG,mBACL,CAAAF,IAAA,iBAAAC,MAED,WACC,IAAIE,EAAKC,EAAEL,KAAKF,KACZQ,EAAOF,EAAGE,OAAOC,OACjBC,EAAcF,EAAK,GACvBA,EAAOA,EAAKG,UAAU,GACtBL,EAAGE,KAAKA,GACRF,EAAGM,KAAK,6BAADC,OACef,EAAG,cAAAe,OAAaH,EAAW,WAAAG,OAAUL,EAAI,oB,0FAlBzC,I","file":"82.js","sourcesContent":["// CONSTANTS are all caps.\nconst NS = \"TextFeature\";\nconst CLS = \"textFeature\";\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/textFeature.js using Webpack dynamic imports as chunks.\n// import $ from 'jquery'\n\n\nexport class TextFeature {\n\n\tconstructor($el) {\n\t\t// $el is the widget node return by the loadTextFeature function\n\t\tthis.$el = $el;\n\t}\n\n\tinit() {\n\t\tthis.setTextFeature();\n\t}\n\n\tsetTextFeature() {\n\t\tlet wg = $(this.$el);\n\t\tlet text = wg.text().trim();\n\t\tlet firstLetter = text[0];\n\t\ttext = text.substring(1);\n\t\twg.text(text);\n\t\twg.html(`\n\t\t
${firstLetter}${text}
\n\t\t`);\n\t\t// wg.html(`\n\t\t//${firstLetter}${text}
\n\t\t// `);\n\t}\n\n\t//Add more functions like on above here\n\n}\n"],"sourceRoot":""}