diff options
author | Endi S. Dewata <edewata@redhat.com> | 2011-09-21 16:53:30 -0500 |
---|---|---|
committer | Endi S. Dewata <edewata@redhat.com> | 2011-09-21 22:15:16 +0000 |
commit | 3112822a48324f1c537db234d5d7e84d6f95c2eb (patch) | |
tree | 4be673b522f5745b58e5c419347e46e5aba8d5eb | |
parent | ff94bbe16bba0debf6713ec395762c3cadc4fff6 (diff) | |
download | freeipa-3112822a48324f1c537db234d5d7e84d6f95c2eb.tar.gz freeipa-3112822a48324f1c537db234d5d7e84d6f95c2eb.tar.xz freeipa-3112822a48324f1c537db234d5d7e84d6f95c2eb.zip |
Fixed missing cancel button in unprovisioning dialog.
The host unprovisioning dialog has been modified to provide a cancel
button.
Ticket #1811
-rw-r--r-- | install/ui/host.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/install/ui/host.js b/install/ui/host.js index 1b1125170..2b0a5a4ed 100644 --- a/install/ui/host.js +++ b/install/ui/host.js @@ -536,6 +536,10 @@ IPA.host_keytab_widget = function(spec) { ); }); + dialog.add_button(IPA.messages.buttons.cancel, function() { + dialog.close(); + }); + dialog.open(that.container); }; |