From 46137fdf898690836ae61e54b1cb2711492287f3 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Mon, 16 May 2011 22:23:20 -0500 Subject: jQuery ordered map. The ordered map is a jQuery extension for creating a collection which can be accessed both as an ordered list and as a map. This collection can be used to store various objects including entities, fields, columns, and dialogs. A test suite for this class has been added as well. Ticket #1232 --- install/ui/test/details_tests.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'install/ui/test/details_tests.js') diff --git a/install/ui/test/details_tests.js b/install/ui/test/details_tests.js index 2715b4ea..8f98f1fe 100644 --- a/install/ui/test/details_tests.js +++ b/install/ui/test/details_tests.js @@ -62,7 +62,7 @@ test("Testing IPA.details_section.create().", function() { section.entity_name = 'user'; section.init(); - var fields = section.fields; + var fields = section.fields.values; var container = $("
"); section.create(container); @@ -264,7 +264,7 @@ test("Testing IPA.details_section_setup again()",function(){ text({name:'cn', label:'Entity Name'}). text({name:'description', label:'Description'}). text({name:'number', label:'Entity ID'}); - var fields = section.fields; + var fields = section.fields.values; var container = $("
"); var details = $("
"); container.append(details); -- cgit