세미콜론 빠진 것 추가

This commit is contained in:
chicpro
2015-03-13 11:26:25 +09:00
parent 31d5e384e2
commit 2717346e9d

View File

@ -577,8 +577,8 @@ $(function(){
});
$("textarea#wr_content[maxlength]").live("keyup change", function() {
var str = $(this).val()
var mx = parseInt($(this).attr("maxlength"))
var str = $(this).val();
var mx = parseInt($(this).attr("maxlength"));
if (str.length > mx) {
$(this).val(str.substr(0, mx));
return false;