From c23dd23219d224de8844df07f7cf6564f8abc98f Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Thu, 13 Sep 2012 11:23:35 +0200 Subject: Make confirm_dialog a base class for deleter dialog https://fedorahosted.org/freeipa/ticket/3035 --- install/ui/association.js | 6 ------ 1 file changed, 6 deletions(-) (limited to 'install/ui/association.js') 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(); } ); }; -- cgit