모바일기기에서의 캡챠 처리를 위해 스타일 class 추가

This commit is contained in:
chicpro
2015-10-05 17:51:24 +09:00
parent 0618fd53dc
commit 47433e4b42

View File

@ -235,6 +235,9 @@ class KCAPTCHA{
// 캡챠 HTML 코드 출력
function captcha_html($class="captcha")
{
if(is_mobile())
$class .= ' m_captcha';
$html .= "\n".'<script>var g5_captcha_url = "'.G5_CAPTCHA_URL.'";</script>';
//$html .= "\n".'<script>var g5_captcha_path = "'.G5_CAPTCHA_PATH.'";</script>';
$html .= "\n".'<script src="'.G5_CAPTCHA_URL.'/kcaptcha.js"></script>';