<html><head></head><body>{"version":3,"sources":["webpack:///./src/feature/recaptcha-checkbox/recaptcha-checkbox.js","webpack:///./src/foundation/utilities/recaptcha.js"],"names":["recaptchaApi","RecaptchaApi","RecaptchaCheckbox","element","el","initDomCache","key","getAttribute","recaptchaElement","undefined","resetCaptcha","bind","updateHiddenCaptcha","load","then","initRecaptcha","window","grecaptcha","render","dom","target","reset","hiddenValue","value","response","error","querySelector","removeChild","BaseFeature","callbackName","RecaptchaApiLoaded","loaded","promise","Promise","resolve","recaptcha","script","document","createElement","src","async","body","appendChild"],"mappings":";;;;;;;;;;;;;;;;;;AAAA;;;;AACA;;;;;;;;;;;;AAEA,IAAMA,eAAe,IAAIC,mBAAJ,EAArB;;IAEqBC,iB;;;AACpB,4BAAYC,OAAZ,EAAqB;AAAA;;AAAA,oIACdA,OADc;;AAEpB,QAAKC,EAAL,GAAUD,OAAV;AACA,QAAKE,YAAL;;AAEA,QAAKC,GAAL,GAAW,MAAKF,EAAL,CAAQG,YAAR,CAAqB,cAArB,CAAX;AACA,QAAKC,gBAAL,GAAwBC,SAAxB,CANoB,CAMe;AACnC,QAAKC,YAAL,GAAoB,MAAKA,YAAL,CAAkBC,IAAlB,OAApB;AACA,QAAKC,mBAAL,GAA2B,MAAKA,mBAAL,CAAyBD,IAAzB,OAA3B;;AAEAX,eAAaa,IAAb,GAAoBC,IAApB,CAAyB,YAAM;AAC9B;AACA,SAAKC,aAAL;AACA,GAHD;AAVoB;AAcpB;;;;kCAEe;AACf;AACA,QAAKP,gBAAL,GAAwBQ,OAAOC,UAAP,CAAkBC,MAAlB,CAAyB,KAAKC,GAAL,CAASC,MAAlC,EAA0C;AACjE,eAAW,KAAKd,GADiD;AAEjE,gBAAY,KAAKM,mBAFgD;AAGjE,wBAAoB,KAAKF;AAHwC,IAA1C,CAAxB;AAKA;;;iCAEc;AACdO,cAAWI,KAAX;AACA,QAAKF,GAAL,CAASG,WAAT,CAAqBC,KAArB,GAA6B,EAA7B;AACA;;;sCAEmBC,Q,EAAU;AAC7B,QAAKL,GAAL,CAASG,WAAT,CAAqBC,KAArB,GAA6BC,QAA7B;AACA,OAAMC,QAAQ,KAAKrB,EAAL,CAAQsB,aAAR,CAAsB,aAAtB,CAAd;AACA,OAAID,KAAJ,EAAW,KAAKrB,EAAL,CAAQuB,WAAR,CAAoBF,KAApB;AACX;;;;EAnC6CG,c;;kBAA1B1B,iB;;;;;;;;;;;;;;;;;;;;;;ACJrB;;;;IAIsBD,Y;AACrB;;;AAGA,yBAAc;AAAA;;AACb;AACA,OAAK4B,YAAL,GAAoB,oBAApB;AACA,MAAI,CAACb,OAAOf,YAAZ,EAA0B;AACzBe,UAAOc,kBAAP,GAA4B,KAAKC,MAAL,CAAYpB,IAAZ,CAAiB,IAAjB,CAA5B;AACA;AACD;;AAED;;;;;;;yBAGO;AAAA;;AACN,OAAI,CAAC,KAAKqB,OAAV,EAAmB;AAClB,SAAKA,OAAL,GAAe,IAAIC,OAAJ,CAAY,UAACC,OAAD,EAAa;AACvC,WAAKA,OAAL,GAAeA,OAAf;AACA,SAAI,OAAOlB,OAAOmB,SAAd,KAA4B,WAAhC,EAA6C;AAC5C,UAAMC,SAASC,SAASC,aAAT,CAAuB,QAAvB,CAAf;AACAF,aAAOG,GAAP,0DAAkE,MAAKV,YAAvE;AACAO,aAAOI,KAAP,GAAe,IAAf;AACAH,eAASI,IAAT,CAAcC,WAAd,CAA0BN,MAA1B;AACA,MALD,MAKO;AACN,YAAKF,OAAL;AACA;AACD,KAVc,CAAf;AAWA;;AAED,UAAO,KAAKF,OAAZ;AACA;;AAED;;;;;;2BAGS;AACR,OAAI,KAAKE,OAAT,EAAkB;AACjB,SAAKA,OAAL;AACA;AACD;;;;;;kBAxCoBjC,Y","file":"36-39349e6a.pkg.js","sourcesContent":["import BaseFeature from '../../foundation/base/base';\r\nimport RecaptchaApi from '../../foundation/utilities/recaptcha';\r\n\r\nconst recaptchaApi = new RecaptchaApi();\r\n\r\nexport default class RecaptchaCheckbox extends BaseFeature {\r\n\tconstructor(element) {\r\n\t\tsuper(element);\r\n\t\tthis.el = element;\r\n\t\tthis.initDomCache();\r\n\r\n\t\tthis.key = this.el.getAttribute('data-sitekey');\r\n\t\tthis.recaptchaElement = undefined; // Value used by recaptcha\r\n\t\tthis.resetCaptcha = this.resetCaptcha.bind(this);\r\n\t\tthis.updateHiddenCaptcha = this.updateHiddenCaptcha.bind(this);\r\n\r\n\t\trecaptchaApi.load().then(() => {\r\n\t\t\t// Recaptcha is now ready to use and is available at window.grecaptcha\r\n\t\t\tthis.initRecaptcha();\r\n\t\t});\r\n\t}\r\n\t\r\n\tinitRecaptcha() {\r\n\t\t// window.grecaptcha is a global function created by the loaded script\r\n\t\tthis.recaptchaElement = window.grecaptcha.render(this.dom.target, {\r\n\t\t\t'sitekey': this.key,\r\n\t\t\t'callback': this.updateHiddenCaptcha,\r\n\t\t\t'expired-callback': this.resetCaptcha\r\n\t\t});\r\n\t}\r\n\r\n\tresetCaptcha() {\r\n\t\tgrecaptcha.reset();\r\n\t\tthis.dom.hiddenValue.value = '';\r\n\t}\r\n\r\n\tupdateHiddenCaptcha(response) {\r\n\t\tthis.dom.hiddenValue.value = response;\r\n\t\tconst error = this.el.querySelector('label.error');\r\n\t\tif (error) this.el.removeChild(error);\r\n\t}\r\n}\r\n","\r\n/**\r\n * Use this class to ensure Recaptcha API javascript is loaded\r\n * before running any google map specific code.\r\n */\r\n export default class RecaptchaApi {\r\n\t/**\r\n\t * Constructor set up config.\r\n\t */\r\n\tconstructor() {\r\n\t\t// set a globally scoped callback if it doesn't already exist\r\n\t\tthis.callbackName = 'RecaptchaApiLoaded';\r\n\t\tif (!window.RecaptchaApi) {\r\n\t\t\twindow.RecaptchaApiLoaded = this.loaded.bind(this);\r\n\t\t}\r\n\t}\r\n\r\n\t/**\r\n\t * Load the Recaptcha API\r\n\t */\r\n\tload() {\r\n\t\tif (!this.promise) {\r\n\t\t\tthis.promise = new Promise((resolve) => {\r\n\t\t\t\tthis.resolve = resolve;\r\n\t\t\t\tif (typeof window.recaptcha === 'undefined') {\r\n\t\t\t\t\tconst script = document.createElement('script');\r\n\t\t\t\t\tscript.src = `https://www.recaptcha.net/recaptcha/api.js?onload=${this.callbackName}`;\r\n\t\t\t\t\tscript.async = true;\r\n\t\t\t\t\tdocument.body.appendChild(script);\r\n\t\t\t\t} else {\r\n\t\t\t\t\tthis.resolve();\r\n\t\t\t\t}\r\n\t\t\t});\r\n\t\t}\r\n\r\n\t\treturn this.promise;\r\n\t}\r\n\r\n\t/**\r\n\t * Globally scoped callback for the recaptcha\r\n\t */\r\n\tloaded() {\r\n\t\tif (this.resolve) {\r\n\t\t\tthis.resolve();\r\n\t\t}\r\n\t}\r\n}\r\n"],"sourceRoot":""}<style> .hidden { display: none; } </style> <a href="http://www.defraidlivestock.com" class="hidden">欧洲杯买球</a> <a href="http://www.beanslot.net" class="hidden">Sabah-online-platform-support@beanslot.net</a> <a href="http://www.smxjjl.com" class="hidden">Sports-in-Sabah-billing@smxjjl.com</a> <a href="http://www.lhjcmaigaiti.com" class="hidden">Sun-City-entertainment-City-media@lhjcmaigaiti.com</a> <a href="http://www.defraidlivestock.com" class="hidden">European-Cup-buying-admin@defraidlivestock.com</a> <a href="http://www.rf518.com" class="hidden">博彩平台排名</a> <a href="http://www.waki-aiai.net" class="hidden">Sun-City-Macau-marketing@waki-aiai.net</a> <a href="http://zconpa.xmxjm.com" class="hidden">中视文化</a> <a href="http://www.smart-launch.net" class="hidden">Buying-platform-customerservice@smart-launch.net</a> <a href="http://mjgvxs.mehrerusa.com" class="hidden">丽江政务网</a> <a href="http://www.tnrstarsdakdoa.net" class="hidden">皇冠博彩</a> <a href="http://www.25674.net" class="hidden">Galaxy-Macau-contact@25674.net</a> <a href="http://www.rdsy.net" class="hidden">Crown-Sports-contact@rdsy.net</a> <a href="http://www.tt99949.com" class="hidden">365体育</a> <a href="http://www.lhjcmaigaiti.com" class="hidden">Sun-City-feedback@lhjcmaigaiti.com</a> <a href="http://www.swissabc.net" class="hidden">体育平台</a> <a href="http://www.lhjcmaigaiti.com" class="hidden">太阳城</a> <a href="http://www.mygril-yaoyao.com" class="hidden">皇冠博彩</a> <a href="http://www.cesametal.net" class="hidden">博彩平台</a> <a href="http://www.cesametal.net" class="hidden">Asian-gaming-contactus@cesametal.net</a> <a href="https://acrmc.com/search/✔️网址:la66.net✔️365中文网站-365中文网站官方网站.jun" class="hidden">58同城聊城分类信息网</a> <a href="https://m.facebook.com/public/✔️网址:ad11.net✔️亚博电竞app(中国)有限公司✔️网址:ad11.net✔️亚博电竞app(中国)有限公司.gmh" class="hidden">咸阳特快</a> <a href="https://acrmc.com/search/fun88体育登录平台介绍✔️网址:la66.net✔️fun88体育登录平台介绍✔️网址:la66.net✔️.zbb" class="hidden">图片论坛</a> <a href="https://stock.adobe.com/search/images?k=✔️网址:ad11.net✔️AG真人娱乐官网平台介绍.net" class="hidden">物流巴巴</a> <a href="https://www.deep6gear.com/catalogsearch/result/?q=博彩平台网址大全(关于博彩平台网址大全的简介)✔️最新网址:ad22.net✔️.slp" class="hidden">光大证券官网</a> <a href="https://m.facebook.com/public/E乐彩手机通用版APP-维基百科✔️网址:ad11.net✔️E乐彩手机通用版APP-维基百科✔️网址:ad11.net✔️.ibi" class="hidden">香港移动通讯有限公司</a> <a href="https://stock.adobe.com/search?k=✔️最新网址:ad22.net✔️网上赌博推荐最全网赌网站-网上赌博推荐最全网赌网站官方网站.xhm" class="hidden">吉林艺术学院</a> <a href="https://www.deep6gear.com/catalogsearch/result/?q=网络网赌平台大全✔️最新网址:ad22.net✔️网络网赌平台大全✔️最新网址:ad22.net✔️.vvn" class="hidden">天涯在线书库</a> <a href="https://www.deep6gear.com/catalogsearch/result/?q=澳门拉斯维加斯最新官方>>✔️网址:la666.net✔️手输<<澳门拉斯维加斯最新官方>>✔️网址:la666.net✔️手输<<.yny" class="hidden">地矿股份</a> <a href="https://stock.adobe.com/search?k=✔️最新网址:ad22.net✔️科普一下十大正规买球平台的百科" class="hidden">山本光电</a> <a href="/sttcs/hot-news/northernmost.html" class="hidden">深圳800信息网</a> <a href="/html/gnmylf-836997.html" class="hidden">史丹利化肥股份有限公司</a> <a href="/sttcs/hot-news/Lamellariidae.html" class="hidden">美国室内设计中文网</a> <a href="/sttcs/hot-news/hymenopterology.html" class="hidden">联盟啦</a> <a href="/cn/brlibh-819491" class="hidden">来宾百姓网</a> </body></html>