myvesta/web/js/old/.svn/text-base/validators.js.svn-base
2011-06-14 00:22:25 +03:00

13 lines
207 B
Text

App.Validate.ipForm = function(values){
if(values.IP_ADDRESS == '') {
return alert('Not correct ip');
}
return true;
}
App.Validate.dnsForm = function(values){
return true;
}