summaryrefslogtreecommitdiffstats
path: root/install/ui/src/freeipa/association.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/association.js
parent8eb389c225f5c09d5d8324f03e11f0be98a2d61d (diff)
downloadfreeipa.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/association.js')
-rw-r--r--install/ui/src/freeipa/association.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/install/ui/src/freeipa/association.js b/install/ui/src/freeipa/association.js
index 7b4a78d5..f976d58e 100644
--- a/install/ui/src/freeipa/association.js
+++ b/install/ui/src/freeipa/association.js
@@ -520,7 +520,7 @@ IPA.association_table_widget = function (spec) {
that.show_add_dialog();
};
- dialog.open(that.container);
+ dialog.open();
} else {
that.show_add_dialog();
@@ -540,7 +540,7 @@ IPA.association_table_widget = function (spec) {
that.show_remove_dialog();
};
- dialog.open(that.container);
+ dialog.open();
} else {
that.show_remove_dialog();
@@ -650,7 +650,7 @@ IPA.association_table_widget = function (spec) {
);
};
- dialog.open(that.container);
+ dialog.open();
};
that.add = function(values, on_success, on_error) {
@@ -714,7 +714,7 @@ IPA.association_table_widget = function (spec) {
};
- dialog.open(that.container);
+ dialog.open();
};
that.remove = function(values, on_success, on_error) {
@@ -1145,7 +1145,7 @@ exp.association_facet = IPA.association_facet = function (spec, no_init) {
associator.execute();
};
- dialog.open(that.container);
+ dialog.open();
};
that.show_remove_dialog = function() {
@@ -1198,7 +1198,7 @@ exp.association_facet = IPA.association_facet = function (spec, no_init) {
associator.execute();
};
- dialog.open(that.container);
+ dialog.open();
};
that.get_records_map = function(data) {
@@ -1431,7 +1431,7 @@ exp.attribute_facet = IPA.attribute_facet = function(spec, no_init) {
dialog.added.attach(function() {
that.refresh();
});
- dialog.open(that.container);
+ dialog.open();
};
that.show_remove_dialog = function() {
@@ -1467,7 +1467,7 @@ exp.attribute_facet = IPA.attribute_facet = function(spec, no_init) {
};
- dialog.open(that.container);
+ dialog.open();
};
that.remove = function(values, on_success, on_error) {