From 4270e26adb56b6d1b7a9e80433581b82519d9eec Mon Sep 17 00:00:00 2001 From: Adam Young Date: Fri, 18 Mar 2011 16:43:54 -0400 Subject: define entities using builder and more declarative syntax merged hbac and sudo in to single files associaton facet and table supports linking --- install/ui/search.js | 3 +++ 1 file changed, 3 insertions(+) (limited to 'install/ui/search.js') diff --git a/install/ui/search.js b/install/ui/search.js index 101347f9..9d22dfcc 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; }; -- cgit