export from svn

This commit is contained in:
Serghey Rodin 2011-06-14 00:22:25 +03:00
commit 641ed97fdd
340 changed files with 32404 additions and 0 deletions

13
web/js/old/validators.js Normal file
View file

@ -0,0 +1,13 @@
App.Validate.ipForm = function(values){
if(values.IP_ADDRESS == '') {
return alert('Not correct ip');
}
return true;
}
App.Validate.dnsForm = function(values){
return true;
}