summaryrefslogtreecommitdiffstats
path: root/install/ui/src/freeipa/aci.js
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2013-10-17 17:51:32 +0200
committerMartin Kosek <mkosek@redhat.com>2014-01-21 12:04:02 +0100
commitf821d786df2b8695308a6d944191c3cd7d17d512 (patch)
tree397b0beeeb550330c9152c7bbc1b14af88489627 /install/ui/src/freeipa/aci.js
parentab719d6f3e68ab2525bd0f68f54558a0adbeed85 (diff)
downloadfreeipa-f821d786df2b8695308a6d944191c3cd7d17d512.tar.gz
freeipa-f821d786df2b8695308a6d944191c3cd7d17d512.tar.xz
freeipa-f821d786df2b8695308a6d944191c3cd7d17d512.zip
Use Fluid layout be default
https://fedorahosted.org/freeipa/ticket/3904
Diffstat (limited to 'install/ui/src/freeipa/aci.js')
-rw-r--r--install/ui/src/freeipa/aci.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/install/ui/src/freeipa/aci.js b/install/ui/src/freeipa/aci.js
index b848073b0..ce4eb0efa 100644
--- a/install/ui/src/freeipa/aci.js
+++ b/install/ui/src/freeipa/aci.js
@@ -116,7 +116,7 @@ return {
],
widgets: [
{
- $type: 'details_table_section',
+ $type: 'details_section',
name: 'identity',
label: '@i18n:objects.permission.identity',
widgets: [
@@ -124,7 +124,7 @@ return {
]
},
{
- $type: 'details_table_section',
+ $type: 'details_section',
name: 'rights',
label: '@i18n:objects.permission.rights',
widgets: [
@@ -136,7 +136,7 @@ return {
},
{
$type: 'permission_target',
- container_factory: IPA.details_table_section,
+ container_factory: IPA.details_section,
label: '@i18n:objects.permission.target',
name: 'target',
show_target: false
@@ -216,7 +216,7 @@ return {
],
widgets: [
{
- $type: 'details_table_section_nc',
+ $type: 'details_section',
name: 'general',
widgets: [
'cn',
@@ -646,13 +646,13 @@ IPA.rights_widget = function(spec) {
/**
* @class IPA.permission_target_widget
- * @extends IPA.details_table_section_nc
+ * @extends IPA.details_section
*/
IPA.permission_target_widget = function(spec) {
spec = spec || {};
- var factory = spec.container_factory || IPA.details_table_section_nc;
+ var factory = spec.container_factory || IPA.details_section;
var that = factory(spec);