From e0215421208d853e853f9c7b66add1e145982fbc Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Tue, 22 Nov 2011 17:33:09 +0100 Subject: Removing sections as special type of object Sections are changed into pure widget objects. Introduced IPA.composite_widget, basic widget for widget nesting (it's using IPA.widget_container). It's base class for section widgets. TODO: change old custom sections into custom fields and widgets. Note: usage of section in HBAC and SUDO is kept - whole logic will be removed in #1515 patch. https://fedorahosted.org/freeipa/ticket/2040 --- install/ui/test/details_tests.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'install/ui/test') diff --git a/install/ui/test/details_tests.js b/install/ui/test/details_tests.js index 33346423..bea863e2 100644 --- a/install/ui/test/details_tests.js +++ b/install/ui/test/details_tests.js @@ -64,7 +64,7 @@ test("Testing IPA.details_section.create().", function() { section.entity_name = 'user'; - var fields = section.fields.values; + var fields = section.fields.get_fields(); var container = $("
"); section.create(container); @@ -276,7 +276,7 @@ test("Testing IPA.details_section_create again()",function(){ text({name:'cn', label:'Entity Name'}). text({name:'description', label:'Description'}). text({name:'number', label:'Entity ID'}); - var fields = section.fields.values; + var fields = section.fields.get_fields(); var container = $("
"); var details = $("
"); container.append(details); -- cgit