We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ongoing issue with recaptcha - DethAriel/ng-recaptcha#123
I'll leave the issue open for anyone else who stumbles upon it. Maintainer can close if they would like.
Bug reproduce
The text was updated successfully, but these errors were encountered:
Seems like an issue with recaptcha.
Sorry, something went wrong.
I was able to fix this issue by removing the <script> tag in index.html and doing this in the component i'm using captcha:
Inject:
private _renderer2: Renderer2, @Inject(DOCUMENT) private _document: Document
In constructor:
let script = this._renderer2.createElement('script'); script.type = 'text/javascript'; script.src = 'https://www.google.com/recaptcha/api.js?render=explicit&onload=initRecaptcha'; script.async = true; script.defer = true; this._renderer2.appendChild(this._document.body, script);
No branches or pull requests
Ongoing issue with recaptcha -
DethAriel/ng-recaptcha#123
I'll leave the issue open for anyone else who stumbles upon it. Maintainer can close if they would like.
Bug reproduce
The text was updated successfully, but these errors were encountered: