summaryrefslogtreecommitdiffstats
path: root/install/ui/associate.js
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2011-04-27 12:17:13 -0500
committerAdam Young <ayoung@redhat.com>2011-06-13 09:23:29 -0400
commitcb70784e6fd864132d8e6f97e2a5c7d179ef5c0b (patch)
tree52c4fff321ec3d8eba462e6c294aeaf415c44458 /install/ui/associate.js
parent61cfa343c36383a1a2e12663aec44e9c5692b854 (diff)
downloadfreeipa.git-cb70784e6fd864132d8e6f97e2a5c7d179ef5c0b.tar.gz
freeipa.git-cb70784e6fd864132d8e6f97e2a5c7d179ef5c0b.tar.xz
freeipa.git-cb70784e6fd864132d8e6f97e2a5c7d179ef5c0b.zip
Entitlement status.
A new facet has been added to show entitlement status and download the registration certificate.
Diffstat (limited to 'install/ui/associate.js')
-rw-r--r--install/ui/associate.js6
1 files changed, 2 insertions, 4 deletions
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('<p>Error: '+error_thrown.name+'</p>');
- summary.append('<p>'+error_thrown.message+'</p>');
+ 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('<p>Error: '+error_thrown.name+'</p>');
- summary.append('<p>'+error_thrown.message+'</p>');
+ summary.append(error_thrown.name+': '+error_thrown.message);
}
);
}