Commit 52aa7931 by Kálmán Viktor

network: minor js fix

parent 84425206
...@@ -96,7 +96,8 @@ function validateForm() { ...@@ -96,7 +96,8 @@ function validateForm() {
if(type === "CNAME") { if(type === "CNAME") {
if(!$('#id_name').val()) { if(!$('#id_name').val()) {
messages.push({ messages.push({
'message': 'Name cannot be empty!', 'message': 'Name must be specified for ' +
'CNAME records if host is set!',
'id': 'name' 'id': 'name'
}); });
} }
...@@ -176,10 +177,10 @@ function validateForm() { ...@@ -176,10 +177,10 @@ function validateForm() {
record_name = $('#id_name').val() record_name = $('#id_name').val()
if(!record_name) { if(!record_name) {
messages.push({ //messages.push({
'message': gettext("You must specify a name!"), // 'message': gettext("You must specify a name!"),
'id': 'name' // 'id': 'name'
}); //});
} }
else if(!domain_re.test(record_name)) { else if(!domain_re.test(record_name)) {
text = gettext('%s - invalid domain name'), text = gettext('%s - invalid domain name'),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment