원조 버그 수정

This commit is contained in:
2020-06-11 00:20:08 +09:00
parent 87e61c8920
commit 3673632089
2 changed files with 285 additions and 283 deletions
+4 -2
View File
@@ -73,9 +73,11 @@ jQuery(function($) {
}
},
'integerArray': function($obj) {
return $obj.map(function() {
return parseInt($(this).val());
var result = [];
$obj.each(function() {
result.push(parseInt($(this).val()));
});
return result;
}
}