diff options
author | Petr Vobornik <pvoborni@redhat.com> | 2013-04-11 13:07:53 +0200 |
---|---|---|
committer | Petr Vobornik <pvoborni@redhat.com> | 2013-05-06 16:22:24 +0200 |
commit | 6a034abf953ab756c69de5ec7a838d259d229bea (patch) | |
tree | f9ba1dad9065c312ab1a2062c038076d5f1643e4 /install/ui/src/freeipa/automount.js | |
parent | 44c103bab75a26e787d0a2d7908bed5bf398dd02 (diff) | |
download | freeipa-6a034abf953ab756c69de5ec7a838d259d229bea.tar.gz freeipa-6a034abf953ab756c69de5ec7a838d259d229bea.tar.xz freeipa-6a034abf953ab756c69de5ec7a838d259d229bea.zip |
Rename factory to $factory in spec objects
https://fedorahosted.org/freeipa/ticket/3235
Diffstat (limited to 'install/ui/src/freeipa/automount.js')
-rw-r--r-- | install/ui/src/freeipa/automount.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/install/ui/src/freeipa/automount.js b/install/ui/src/freeipa/automount.js index bc3e06ef5..ab8ac791f 100644 --- a/install/ui/src/freeipa/automount.js +++ b/install/ui/src/freeipa/automount.js @@ -70,7 +70,7 @@ IPA.automount.map_entity = function(spec) { that.builder.containing_entity('automountlocation'). facet_groups([ 'automountkey', 'settings' ]). nested_search_facet({ - factory: IPA.automount.key_search_facet, + $factory: IPA.automount.key_search_facet, facet_group: 'automountkey', nested_entity: 'automountkey', search_all_entries: true, @@ -79,7 +79,7 @@ IPA.automount.map_entity = function(spec) { name: 'keys', columns: [ { - factory: IPA.automount_key_column, + $factory: IPA.automount_key_column, name: 'automountkey', label: IPA.get_entity_param('automountkey', 'automountkey').label }, @@ -102,7 +102,7 @@ IPA.automount.map_entity = function(spec) { ] }). adder_dialog({ - factory: IPA.automountmap_adder_dialog, + $factory: IPA.automountmap_adder_dialog, sections: [ { name: 'general', @@ -171,7 +171,7 @@ IPA.automount.key_entity = function(spec) { that.builder.containing_entity('automountmap'). details_facet({ - factory: IPA.automount.key_details_facet, + $factory: IPA.automount.key_details_facet, sections: [ { name:'identity', |