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/dns.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/dns.js')
-rw-r--r-- | install/ui/src/freeipa/dns.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/install/ui/src/freeipa/dns.js b/install/ui/src/freeipa/dns.js index b2eeb789..8876eab1 100644 --- a/install/ui/src/freeipa/dns.js +++ b/install/ui/src/freeipa/dns.js @@ -1220,7 +1220,7 @@ IPA.dns.record_details_facet = function(spec) { if (!data.result.result.idnsname) { that.reset(); var dialog = IPA.dnsrecord_redirection_dialog(); - dialog.open(that.container); + dialog.open(); return; } @@ -1734,7 +1734,7 @@ IPA.dns.record_type_table_widget = function(spec) { that.show_add_dialog(); }; - dialog.open(that.container); + dialog.open(); } else { that.show_add_dialog(); @@ -1754,7 +1754,7 @@ IPA.dns.record_type_table_widget = function(spec) { that.show_remove_dialog(); }; - dialog.open(that.container); + dialog.open(); } else { that.show_remove_dialog(); @@ -1792,7 +1792,7 @@ IPA.dns.record_type_table_widget = function(spec) { }; - dialog.open(that.container); + dialog.open(); }; that.remove = function(values, pkey, on_success, on_error) { @@ -1907,7 +1907,7 @@ IPA.dns.record_type_table_widget = function(spec) { that.show_add_dialog = function() { var dialog = that.create_add_dialog(); - dialog.open(that.container); + dialog.open(); }; that.create_mod_dialog = function() { |