원조 버그 수정
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user