#402 에 따른 댓글 삭제 루틴 모바일 스킨에도 적용

This commit is contained in:
chicpro
2013-03-15 17:03:42 +09:00
parent 2876cc9a45
commit 04fec7ffab
4 changed files with 21 additions and 21 deletions

View File

@ -195,17 +195,17 @@ var char_max = parseInt(<?=$comment_max?>); // 최대
var cnt = parseInt(document.getElementById('char_count').innerHTML);
if (char_min > 0 && char_min > cnt)
{
alert("댓글 "+char_min+"글자 이상 쓰셔야 합니다.");
alert("댓글 "+char_min+"글자 이상 쓰셔야 합니다.");
return false;
} else if (char_max > 0 && char_max < cnt)
{
alert("댓글 "+char_max+"글자 이하로 쓰셔야 합니다.");
alert("댓글 "+char_max+"글자 이하로 쓰셔야 합니다.");
return false;
}
}
else if (!document.getElementById('wr_content').value)
{
alert("댓글 입력하여 주십시오.");
alert("댓글 입력하여 주십시오.");
return false;
}