summaryrefslogtreecommitdiffstats
path: root/install/static/certificate.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/static/certificate.js')
-rwxr-xr-x[-rw-r--r--]install/static/certificate.js8
1 files changed, 7 insertions, 1 deletions
diff --git a/install/static/certificate.js b/install/static/certificate.js
index f8e77dd4f..e81d3a784 100644..100755
--- a/install/static/certificate.js
+++ b/install/static/certificate.js
@@ -413,7 +413,9 @@ function certificate_status_widget(spec) {
that.widget_create(container);
- var table = $('<table/>').appendTo(container);
+ var table = $('<table/>', {
+ 'class': 'certificate-status'
+ }).appendTo(container);
var tr = $('<tr/>').appendTo(table);
@@ -434,12 +436,16 @@ function certificate_status_widget(spec) {
'value': 'Get'
}).appendTo(td);
+ td.append(' ');
+
if (!that.is_selfsign()) {
$('<input/>', {
'type': 'button',
'name': 'revoke',
'value': 'Revoke'
}).appendTo(td);
+
+ td.append(' ');
}
$('<input/>', {