mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-03 16:51:40 +09:00
11 lines
254 B
JavaScript
11 lines
254 B
JavaScript
|
|
function reCaptchaCallback() {
|
|
$(".g-recaptcha").each(function() {
|
|
var instance = $(this);
|
|
grecaptcha.render(instance.attr("id"), {
|
|
sitekey: instance.data("sitekey"),
|
|
size: instance.data("size"),
|
|
theme: instance.data("theme")
|
|
});
|
|
});
|
|
}
|