summaryrefslogtreecommitdiffstats
path: root/install/ui/association.js
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2012-09-13 11:23:35 +0200
committerPetr Vobornik <pvoborni@redhat.com>2013-01-07 10:53:58 +0100
commitc23dd23219d224de8844df07f7cf6564f8abc98f (patch)
treea428cb0b501308ac5c2e0dea4ee074c0bd0601f5 /install/ui/association.js
parent16663cb215fad4e20169a97231d94d3ee9c21adf (diff)
downloadfreeipa.git-c23dd23219d224de8844df07f7cf6564f8abc98f.tar.gz
freeipa.git-c23dd23219d224de8844df07f7cf6564f8abc98f.tar.xz
freeipa.git-c23dd23219d224de8844df07f7cf6564f8abc98f.zip
Make confirm_dialog a base class for deleter dialog
https://fedorahosted.org/freeipa/ticket/3035
Diffstat (limited to 'install/ui/association.js')
-rw-r--r--install/ui/association.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/install/ui/association.js b/install/ui/association.js
index edba681f..70b8e9f1 100644
--- a/install/ui/association.js
+++ b/install/ui/association.js
@@ -632,12 +632,10 @@ IPA.association_table_widget = function (spec) {
selected_values,
function() {
that.refresh();
- dialog.close();
IPA.notify_success(IPA.messages.association.removed);
},
function() {
that.refresh();
- dialog.close();
}
);
};
@@ -1051,12 +1049,10 @@ IPA.association_facet = function (spec, no_init) {
method: that.remove_method,
on_success: function() {
that.refresh();
- dialog.close();
IPA.notify_success(IPA.messages.association.removed);
},
on_error: function() {
that.refresh();
- dialog.close();
}
});
@@ -1311,12 +1307,10 @@ IPA.attribute_facet = function(spec, no_init) {
function(data) {
that.load(data);
that.show_content();
- dialog.close();
IPA.notify_success(IPA.messages.association.removed);
},
function() {
that.refresh();
- dialog.close();
}
);
};