Replaced NS# with NameServer

This commit is contained in:
Serghey Rodin 2011-12-29 17:58:42 +02:00
parent c2a9d2ca44
commit 0f889d05ba

View file

@ -533,7 +533,7 @@ App.Actions.add_form_ns = function(evt)
$(form).find('.ns-entry').each(function(i, o)
{
$(o).find('label').text('NS #' + (i + 1));
$(o).find('label').text('NameServer #' + (i + 1));
$(o).find('input').attr('name', 'NS' + (i + 1));
});
}
@ -581,7 +581,7 @@ App.Actions.view_template_info = function(evt)
$.each(reply.data, function(key) {
html += '<li><strong>'+key+':</strong> '+reply.data[key]+'</li>';
});
App.Helpers.openInnerPopup(elm, '<ul>'+html+'</ul>', 'Template Info');
App.Helpers.openInnerPopup(elm, '<ul>'+html+'</ul>', 'Template Settings');
}
});
}