From b33f6acfa87587f30822680abe8721f376737022 Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Thu, 13 Sep 2012 11:24:41 +0200 Subject: Make confirm_dialog a base class for message_dialog https://fedorahosted.org/freeipa/ticket/3035 --- install/ui/dns.js | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) (limited to 'install/ui/dns.js') 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() { $('

', { @@ -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; }; -- cgit