diff options
author | Petr Vobornik <pvoborni@redhat.com> | 2013-10-21 16:45:36 +0200 |
---|---|---|
committer | Martin Kosek <mkosek@redhat.com> | 2014-01-21 12:04:03 +0100 |
commit | 53115183fb2907a2dbebd78a90d32ee53cf40663 (patch) | |
tree | 14fe9b13b1dc70d59d13fab3da7eeaf058a2d7e4 /install/ui/src/freeipa/widget.js | |
parent | 8eb389c225f5c09d5d8324f03e11f0be98a2d61d (diff) | |
download | freeipa.git-53115183fb2907a2dbebd78a90d32ee53cf40663.tar.gz freeipa.git-53115183fb2907a2dbebd78a90d32ee53cf40663.tar.xz freeipa.git-53115183fb2907a2dbebd78a90d32ee53cf40663.zip |
Do not open dialog in a container
https://fedorahosted.org/freeipa/ticket/3904
Diffstat (limited to 'install/ui/src/freeipa/widget.js')
-rw-r--r-- | install/ui/src/freeipa/widget.js | 8 |
1 files changed, 4 insertions, 4 deletions
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) { |