vt7 - Errors in validation.js
Some errors in validation.js pointing to this: if((value % 1) != 0)
jQuery.validator.addMethod("WholeNumber", function(value, element, params) {
var regex= /[+]/;
if(value.match(regex)){
return;
if((value % 1) != 0){
return false;
}
}
return true;
}, jQuery.validator.format(app.vtranslate('INVALID_NUMBER'))
);