diff options
author | Adam Young <ayoung@redhat.com> | 2011-03-18 16:43:54 -0400 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2011-03-31 17:29:33 -0400 |
commit | 4270e26adb56b6d1b7a9e80433581b82519d9eec (patch) | |
tree | dcb0982b741d92c0be37e262e70b7cd0969e06d0 /install/ui/search.js | |
parent | db91321fd2c94680361ae8196ba9227615f92c39 (diff) | |
download | freeipa-4270e26adb56b6d1b7a9e80433581b82519d9eec.tar.gz freeipa-4270e26adb56b6d1b7a9e80433581b82519d9eec.tar.xz freeipa-4270e26adb56b6d1b7a9e80433581b82519d9eec.zip |
define entities using builder and more declarative syntax
merged hbac and sudo in to single files
associaton facet and table supports linking
Diffstat (limited to 'install/ui/search.js')
-rw-r--r-- | install/ui/search.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/install/ui/search.js b/install/ui/search.js index 101347f98..9d22dfcc4 100644 --- a/install/ui/search.js +++ b/install/ui/search.js @@ -30,6 +30,7 @@ IPA.search_widget = function (spec) { var that = IPA.table_widget(spec); + that.entity_name = spec.entity_name; that.facet = spec.facet; that.create = function(container) { @@ -286,6 +287,7 @@ IPA.search_facet = function(spec) { var that = IPA.facet(spec); + that.entity_name = spec.entity_name; that.columns = []; that.columns_by_name = {}; @@ -406,6 +408,7 @@ IPA.search_facet = function(spec) { that.search_facet_create = that.create; that.search_facet_setup = that.setup; + return that; }; |