5.3 버전 내용 적용

This commit is contained in:
thisgun
2018-03-30 17:40:37 +09:00
parent 87fdbc7882
commit f7ac06d7d4
733 changed files with 36660 additions and 11623 deletions

View File

@ -0,0 +1,20 @@
function chk_captcha()
{
if ( ! jQuery('#g-recaptcha-response').val()) {
grecaptcha.execute();
return false;
}
return true;
}
function recaptcha_validate(token) {
var $form = jQuery("#g-recaptcha-response").closest("form"),
form_id = $form.attr("id");
if( $form.length ){
$form.submit();
}
}