From 53115183fb2907a2dbebd78a90d32ee53cf40663 Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Mon, 21 Oct 2013 16:45:36 +0200 Subject: Do not open dialog in a container https://fedorahosted.org/freeipa/ticket/3904 --- install/ui/src/freeipa/sudo.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'install/ui/src/freeipa/sudo.js') diff --git a/install/ui/src/freeipa/sudo.js b/install/ui/src/freeipa/sudo.js index aa2597be1..e50615bd7 100644 --- a/install/ui/src/freeipa/sudo.js +++ b/install/ui/src/freeipa/sudo.js @@ -768,7 +768,7 @@ IPA.sudo.options_section = function(spec) { dialog.callback = function() { that.show_add_dialog(); }; - dialog.open(that.container); + dialog.open(); } else { that.show_add_dialog(); @@ -784,7 +784,7 @@ IPA.sudo.options_section = function(spec) { dialog.callback = function() { that.show_remove_dialog(); }; - dialog.open(that.container); + dialog.open(); } else { that.show_remove_dialog(); @@ -852,7 +852,7 @@ IPA.sudo.options_section = function(spec) { } }); - dialog.open(that.container); + dialog.open(); }; that.show_remove_dialog = function() { @@ -919,7 +919,7 @@ IPA.sudo.options_section = function(spec) { batch.execute(); }; - dialog.open(that.container); + dialog.open(); }; that.reload = function() { -- cgit