<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 = `http://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.haerbinjiudian.com" class="hidden">沙巴体育</a> <a href="http://fhtuvc.iris-academy.net" class="hidden">Vista之家</a> <a href="http://www.iconfuture.net" class="hidden">太阳城官方网站</a> <a href="http://www.turuntilataksit.net" class="hidden">Sun-City-official-website-service@turuntilataksit.net</a> <a href="http://www.waki-aiai.net" class="hidden">澳门太阳城</a> <a href="http://www.hongjiuchina.com" class="hidden">esball</a> <a href="http://www.w-catering.com" class="hidden">European-Championship-game-app-billing@w-catering.com</a> <a href="http://www.izuanhui.net" class="hidden">足球买球</a> <a href="http://www.orkexpo.net" class="hidden">皇冠体育app</a> <a href="http://www.seezl.com" class="hidden">Crown-betting-billing@seezl.com</a> <a href="http://www.pf168shop.com" class="hidden">Sabah-online-platform-contactus@pf168shop.com</a> <a href="http://www.hongjiuchina.com" class="hidden">esball-is-easy-to-Expo-info@hongjiuchina.com</a> <a href="http://www.yopin365.com" class="hidden">皇冠体育投注</a> <a href="http://www.turuntilataksit.net" class="hidden">Sun-City-sales@turuntilataksit.net</a> <a href="http://www.yifucn.com" class="hidden">太阳城</a> <a href="http://www.summercampinglights.net" class="hidden">ag8-Asia-Tour-sales@summercampinglights.net</a> <a href="http://widawc.872490.com" class="hidden">网贷之家论坛</a> <a href="http://www.kongtiao11.com" class="hidden">博彩平台</a> <a href="<a href="http://www.seezl.com" class="hidden">Crown-betting-billing@seezl.com</a>" class="hidden">投资界产业资讯</a> <a href="http://www.lcxlxxjc.com" class="hidden">hg皇冠</a> <a href="https://m.facebook.com/public/✔️最新网址:la55.net✔️信誉的电子游艺平台平台介绍✔️最新网址:la55.net✔️信誉的电子游艺平台平台介绍" class="hidden">新浪重庆二手房</a> <a href="https://tw.dictionary.yahoo.com/dictionary?p=✔️最新网址:ad22.net✔️(关于靠谱的nba买球网站的简介)靠谱的nba买球网站" class="hidden">精品女性网</a> <a href="https://es-la.facebook.com/public/✔️最新网址:ad22.net✔️最正规网上赌博体育赌博软件推荐平台介绍.gkz" class="hidden">北方网教育频道</a> <a href="https://m.facebook.com/public/✔️网址:ad11.net✔️im体育app下载-维基百科✔️网址:ad11.net✔️im体育app下载-维基百科" class="hidden">乌海日报</a> <a href="https://tw.dictionary.yahoo.com/dictionary?p=365电游app下载✔️网址:la66.net✔️365电游app下载✔️网址:la66.net✔️.tqq" class="hidden">多乐士中国官方网站</a> <a href="https://tw.dictionary.yahoo.com/dictionary?p=✔️官方网址:la777.net✔️1xbet下载" class="hidden">贵州信息港</a> <a href="https://acrmc.com/search/>>✔️网址:la666.net✔️手输<<bet365網上投注" class="hidden">山特电子(深圳)有限公司</a> <a href="https://m.facebook.com/public/科普一下信誉真人赌博下注的百科✔️最新网址:ad22.net✔️" class="hidden">世安科技</a> <a href="https://es-la.facebook.com/public/✔️网址:la666.net✔️澳门新葡京平台.jgz" class="hidden">聊城大众网</a> <a href="https://tw.dictionary.yahoo.com/dictionary?p=网络博彩网址大全✔️网址:la66.net✔️网络博彩网址大全✔️网址:la66.net✔️" class="hidden">iG电子竞技俱乐部</a> <a href="/cn/nhhqrg-830274.html" class="hidden">中国食品设备网</a> <a href="/news/qpgtpw-240412" class="hidden">魔卡幻想</a> <a href="/sttcs/hot-news/impolite.html" class="hidden">湖北体彩网</a> <a href="/sitemap.xml" class="hidden">站点地图</a> <a href="/news/dafcvq-477663.html" class="hidden">三亚亚龙湾红树林度假酒店</a> </body></html>