recaptcha.js 356 B

1234567891011
  1. export default function showRecaptcha() {
  2. const captcha = document.getElementById('g-recaptcha');
  3. if (!captcha) return null;
  4. if (!window.grecaptcha || !window.grecaptcha.render) {
  5. return setTimeout(() => showRecaptcha(), 200);
  6. }
  7. if (!captcha.childNodes.length) {
  8. window.captchaId = window.grecaptcha.render(captcha);
  9. }
  10. return null;
  11. }