diff options
author | Petr Vobornik <pvoborni@redhat.com> | 2012-09-13 11:23:35 +0200 |
---|---|---|
committer | Petr Vobornik <pvoborni@redhat.com> | 2013-01-07 10:53:58 +0100 |
commit | c23dd23219d224de8844df07f7cf6564f8abc98f (patch) | |
tree | a428cb0b501308ac5c2e0dea4ee074c0bd0601f5 /install/ui/widget.js | |
parent | 16663cb215fad4e20169a97231d94d3ee9c21adf (diff) | |
download | freeipa.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/widget.js')
-rw-r--r-- | install/ui/widget.js | 2 |
1 files changed, 0 insertions, 2 deletions
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(); |