From 966fbd6485f3e2a1bc7fa4c3f96fcb435daa553d Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Wed, 3 Aug 2011 17:15:05 -0500 Subject: Linked entries in HBAC/sudo details page. The association tables in HBAC/sudo details page have been modified to link the entries to the appropriate details page. Ticket #1535 --- install/ui/rule.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'install/ui/rule.js') diff --git a/install/ui/rule.js b/install/ui/rule.js index 3398f245d..44f037f16 100644 --- a/install/ui/rule.js +++ b/install/ui/rule.js @@ -28,7 +28,6 @@ IPA.rule_details_section = function(spec) { var that = IPA.details_section(spec); - that.text = spec.text; that.field_name = spec.field_name; that.options = spec.options || []; that.tables = spec.tables || []; @@ -38,11 +37,11 @@ IPA.rule_details_section = function(spec) { that.container = container; - if (that.text) container.append(that.text); - var field = that.get_field(that.field_name); var param_info = IPA.get_entity_param(that.entity.name, that.field_name); + container.append(param_info.doc+':'); + var span = $('', { name: that.field_name, title: param_info.doc, -- cgit