-
-
Save jamigibbs/a6830df4318e08680aca2a1500597740 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var sitekey = null; | |
var hostUrl = null; | |
var onloadCallback = function () { | |
grecaptcha.render('widget1', { | |
'sitekey': sitekey, | |
'callback': grecaptchaRenderCallback | |
}); | |
}; | |
function grecaptchaRenderCallback(res) { | |
parent.postMessage({ | |
action: "checkCAPTCHAState", | |
isValid: res ? true : false | |
}, '*'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment