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/widget.js | 2 -- 1 file changed, 2 deletions(-) (limited to 'install/ui/widget.js') diff --git a/install/ui/widget.js b/install/ui/widget.js index 2f12ad84..8d2239d8 100644 --- a/install/ui/widget.js +++ b/install/ui/widget.js @@ -1903,12 +1903,10 @@ IPA.attribute_table_widget = function(spec) { function(data, text_status, xhr) { var handler = that.on_remove || that.on_command_success; handler.call(this, data, text_status, xhr); - dialog.close(); }, function(xhr, text_status, error_thrown) { var handler = that.on_remove_error || that.on_command_error; handler.call(this, xhr, text_status, error_thrown); - dialog.close(); } ); command.execute(); -- cgit