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/widget.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'install/ui/src/freeipa/widget.js') diff --git a/install/ui/src/freeipa/widget.js b/install/ui/src/freeipa/widget.js index dc1d0f27..3bd06795 100644 --- a/install/ui/src/freeipa/widget.js +++ b/install/ui/src/freeipa/widget.js @@ -2692,7 +2692,7 @@ IPA.attribute_table_widget = function(spec) { that.show_add_dialog(); }; - dialog.open(that.container); + dialog.open(); } else { that.show_add_dialog(); @@ -2712,7 +2712,7 @@ IPA.attribute_table_widget = function(spec) { that.show_remove_dialog(); }; - dialog.open(that.container); + dialog.open(); } else { that.show_remove_dialog(); @@ -2722,7 +2722,7 @@ IPA.attribute_table_widget = function(spec) { that.show_remove_dialog = function() { var dialog = that.create_remove_dialog(); - if (dialog) dialog.open(that.container); + if (dialog) dialog.open(); }; that.create_remove_dialog = function() { @@ -2882,7 +2882,7 @@ IPA.attribute_table_widget = function(spec) { that.show_add_dialog = function() { var dialog = that.create_add_dialog(); - dialog.open(that.container); + dialog.open(); }; that.update = function(values) { -- cgit