mirror of
https://github.com/myvesta/vesta
synced 2025-07-16 10:03:23 -07:00
13 lines
207 B
JavaScript
13 lines
207 B
JavaScript
App.Validate.ipForm = function(values){
|
|
if(values.IP_ADDRESS == '') {
|
|
return alert('Not correct ip');
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
App.Validate.dnsForm = function(values){
|
|
return true;
|
|
}
|
|
|
|
|