diff options
author | Petr Vobornik <pvoborni@redhat.com> | 2011-11-29 14:29:51 +0100 |
---|---|---|
committer | Endi S. Dewata <edewata@redhat.com> | 2011-12-05 16:01:50 +0000 |
commit | 9a09916108539f0d9f70257983666254c0cde67e (patch) | |
tree | 1ccaf3f296ff1c9eaea466cd095a020a4bcd680e /install/ui/automount.js | |
parent | ab667912cf19d17e749d13b1d9f428ab6ae55b93 (diff) | |
download | freeipa-9a09916108539f0d9f70257983666254c0cde67e.tar.gz freeipa-9a09916108539f0d9f70257983666254c0cde67e.tar.xz freeipa-9a09916108539f0d9f70257983666254c0cde67e.zip |
Changing definition of basic fields in section from factory to type
https://fedorahosted.org/freeipa/ticket/2040
Diffstat (limited to 'install/ui/automount.js')
-rw-r--r-- | install/ui/automount.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/install/ui/automount.js b/install/ui/automount.js index 5a92a52ea..8d4f26bbb 100644 --- a/install/ui/automount.js +++ b/install/ui/automount.js @@ -92,7 +92,7 @@ IPA.automount.map_entity = function(spec) { fields: [ 'automountmapname', { - factory: IPA.textarea_widget, + type: 'textarea', name: 'description' } ] @@ -106,7 +106,7 @@ IPA.automount.map_entity = function(spec) { name: 'general', fields: [ { - factory: IPA.radio_widget, + type: 'radio', name: 'method', label: IPA.messages.objects.automountmap.map_type, options: [ @@ -122,7 +122,7 @@ IPA.automount.map_entity = function(spec) { }, 'automountmapname', { - factory: IPA.textarea_widget, + type: 'textarea', name: 'description' } ] |