summaryrefslogtreecommitdiffstats
path: root/install/ui/src/freeipa/sudo.js
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2013-10-21 16:45:36 +0200
committerMartin Kosek <mkosek@redhat.com>2014-01-21 12:04:03 +0100
commit53115183fb2907a2dbebd78a90d32ee53cf40663 (patch)
tree14fe9b13b1dc70d59d13fab3da7eeaf058a2d7e4 /install/ui/src/freeipa/sudo.js
parent8eb389c225f5c09d5d8324f03e11f0be98a2d61d (diff)
downloadfreeipa-53115183fb2907a2dbebd78a90d32ee53cf40663.tar.gz
freeipa-53115183fb2907a2dbebd78a90d32ee53cf40663.tar.xz
freeipa-53115183fb2907a2dbebd78a90d32ee53cf40663.zip
Do not open dialog in a container
https://fedorahosted.org/freeipa/ticket/3904
Diffstat (limited to 'install/ui/src/freeipa/sudo.js')
-rw-r--r--install/ui/src/freeipa/sudo.js8
1 files changed, 4 insertions, 4 deletions
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() {