summaryrefslogtreecommitdiffstats
path: root/install/ui/host.js
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2011-08-10 20:03:02 -0500
committerEndi S. Dewata <edewata@redhat.com>2011-09-09 19:47:05 +0000
commit26ded75be94e60a34a19d06ce4a5fb3185875cd5 (patch)
tree498efdb8de69d26b37963b301090ca92877e93a2 /install/ui/host.js
parent806a40846b8848ffe2f23e216949d7a8babc5c79 (diff)
downloadfreeipa-26ded75be94e60a34a19d06ce4a5fb3185875cd5.tar.gz
freeipa-26ded75be94e60a34a19d06ce4a5fb3185875cd5.tar.xz
freeipa-26ded75be94e60a34a19d06ce4a5fb3185875cd5.zip
Fixed layout problem in permission adder dialog.
In order to maintain consistent layout between details page and dialog boxes the IPA.details_list_section has been replaced with IPA.details_table_section which is based on table. The IPA.target_section and other subclasses of IPA.details_list_section have been converted to use IPA.details_table_section as well. The unit tests have been updated accordingly. Ticket #1648
Diffstat (limited to 'install/ui/host.js')
-rw-r--r--install/ui/host.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/install/ui/host.js b/install/ui/host.js
index bcff252dd..7eb2e98e5 100644
--- a/install/ui/host.js
+++ b/install/ui/host.js
@@ -427,10 +427,10 @@ IPA.host_enrollment_section = function(spec) {
spec = spec || {};
- var that = IPA.details_list_section(spec);
+ var that = IPA.details_table_section(spec);
that.create = function(container) {
- that.list_section_create(container);
+ that.table_section_create(container);
var keytab_field = that.get_field('has_keytab');
var password_field = that.get_field('has_password');