diff options
Diffstat (limited to 'install/ui/dns.js')
-rw-r--r-- | install/ui/dns.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/install/ui/dns.js b/install/ui/dns.js index ea09e227c..60505d999 100644 --- a/install/ui/dns.js +++ b/install/ui/dns.js @@ -231,6 +231,9 @@ IPA.dnszone_details_facet = function(spec) { return that; }; +// TODO: Remove the custom create() by moving the fields into sections. +// The idnsname and name_from_ip should be moved into a custom section. +// The idnssoamname, idnssoarname, and force into a standard section. IPA.dnszone_adder_dialog = function(spec) { spec = spec || {}; @@ -241,6 +244,11 @@ IPA.dnszone_adder_dialog = function(spec) { that.container.addClass('dnszone-adder-dialog'); + that.message_container = $('<div/>', { + style: 'display: none', + 'class': 'dialog-message ui-state-highlight ui-corner-all' + }).appendTo(that.container); + var table = $('<table/>').appendTo(that.container); var field = that.get_field('idnsname'); |