summaryrefslogtreecommitdiffstats
path: root/install/ui/src/freeipa/widget.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/ui/src/freeipa/widget.js')
-rw-r--r--install/ui/src/freeipa/widget.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/install/ui/src/freeipa/widget.js b/install/ui/src/freeipa/widget.js
index dc1d0f27b..3bd067957 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) {