summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2011-09-21 16:53:30 -0500
committerEndi S. Dewata <edewata@redhat.com>2011-09-21 22:15:16 +0000
commit3112822a48324f1c537db234d5d7e84d6f95c2eb (patch)
tree4be673b522f5745b58e5c419347e46e5aba8d5eb
parentff94bbe16bba0debf6713ec395762c3cadc4fff6 (diff)
downloadfreeipa-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.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/install/ui/host.js b/install/ui/host.js
index 1b112517..2b0a5a4e 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);
};