diff options
Diffstat (limited to 'install/ui/dns.js')
-rw-r--r-- | install/ui/dns.js | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/install/ui/dns.js b/install/ui/dns.js index fceb3e74..d08f4140 100644 --- a/install/ui/dns.js +++ b/install/ui/dns.js @@ -1258,7 +1258,7 @@ IPA.dnsrecord_redirection_dialog = function(spec) { spec = spec || {}; spec.title = spec.title || IPA.messages.dialogs.redirection; - var that = IPA.dialog(spec); + var that = IPA.message_dialog(spec); that.create = function() { $('<p/>', { @@ -1269,14 +1269,10 @@ IPA.dnsrecord_redirection_dialog = function(spec) { }).appendTo(that.container); }; - that.create_button({ - name: 'ok', - label: IPA.messages.buttons.ok, - click: function() { - that.close(); - IPA.nav.show_page('dnszone','default'); - } - }); + that.on_ok = function() { + IPA.nav.show_page('dnszone','default'); + }; + return that; }; |