From acf5f9cad7438268148dff6c6b74d8c63048409a Mon Sep 17 00:00:00 2001 From: Adam Young Date: Wed, 13 Oct 2010 13:07:43 -0400 Subject: multivalue fixes metadata for phone numbers test date for users Undo works for multivalue JQuery UI buttons have custom classes inputs/fields are now managed inside of objects removed the use of .call. as it was confusing the issue of mismatched parameter lists. Fixed the parameter lists, too. --- install/static/host.js | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'install/static/host.js') diff --git a/install/static/host.js b/install/static/host.js index 907f24df..d2cdd7d5 100644 --- a/install/static/host.js +++ b/install/static/host.js @@ -35,11 +35,10 @@ ipa_entity_set_add_definition('host', [ ]); ipa_entity_set_details_definition('host', [ - {name:'host', label:'Host Details', fields:[ - {name:'fqdn', label:'Fully Qualified Domain Name'}, - {name:'krbprincipalname', label:'Kerberos Principal'}, - {name:'serverhostname', label:'Server Host Name'} - ]} + ipa_stanza({name:'host', label:'Host Details'}). + input({name:'fqdn', label:'Fully Qualified Domain Name'}). + input({name:'krbprincipalname', label:'Kerberos Principal'}). + input({name:'serverhostname', label:'Server Host Name'}) ]); ipa_entity_set_association_definition('host', { -- cgit