From cb70784e6fd864132d8e6f97e2a5c7d179ef5c0b Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Wed, 27 Apr 2011 12:17:13 -0500 Subject: Entitlement status. A new facet has been added to show entitlement status and download the registration certificate. --- install/ui/associate.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'install/ui/associate.js') diff --git a/install/ui/associate.js b/install/ui/associate.js index 657839f2..3a90f260 100644 --- a/install/ui/associate.js +++ b/install/ui/associate.js @@ -666,8 +666,7 @@ IPA.association_table_widget = function (spec) { function on_error(xhr, text_status, error_thrown) { var summary = $('span[name=summary]', that.tfoot).empty(); - summary.append('

Error: '+error_thrown.name+'

'); - summary.append('

'+error_thrown.message+'

'); + summary.append(error_thrown.name+': '+error_thrown.message); } var pkey = $.bbq.getState(that.entity_name+'-pkey'); @@ -1027,8 +1026,7 @@ IPA.association_facet = function (spec) { function(xhr, text_status, error_thrown) { that.table.empty(); var summary = that.table.summary.empty(); - summary.append('

Error: '+error_thrown.name+'

'); - summary.append('

'+error_thrown.message+'

'); + summary.append(error_thrown.name+': '+error_thrown.message); } ); } -- cgit