summaryrefslogtreecommitdiffstats
path: root/install/ui/host.js
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2011-02-07 11:38:06 -0600
committerAdam Young <ayoung@redhat.com>2011-02-07 14:34:22 -0500
commit311660dec20401643e456f77a65dc66e3a655cfe (patch)
tree74d9082e9fba210ead619ae1c962ea9f654aa242 /install/ui/host.js
parent4ee6882e9f8c947835e3b5731d783d32bf818757 (diff)
downloadfreeipa-311660dec20401643e456f77a65dc66e3a655cfe.tar.gz
freeipa-311660dec20401643e456f77a65dc66e3a655cfe.tar.xz
freeipa-311660dec20401643e456f77a65dc66e3a655cfe.zip
Hide initial status.
Previously all certificate & Kerberos key statuses (valid, missing and revoked) will appear briefly at the same time during page load. This has been fixed by setting the initial style to hidden.
Diffstat (limited to 'install/ui/host.js')
-rw-r--r--install/ui/host.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/install/ui/host.js b/install/ui/host.js
index cc60fb511..f6af82cb1 100644
--- a/install/ui/host.js
+++ b/install/ui/host.js
@@ -226,7 +226,8 @@ function host_provisioning_status_widget(spec) {
that.widget_create(container);
var div = $('<div/>', {
- name: 'kerberos-key-valid'
+ name: 'kerberos-key-valid',
+ style: 'display: none;'
}).appendTo(container);
$('<img/>', {
@@ -250,7 +251,8 @@ function host_provisioning_status_widget(spec) {
}).appendTo(content_div);
div = $('<div/>', {
- name: 'kerberos-key-missing'
+ name: 'kerberos-key-missing',
+ style: 'display: none;'
}).appendTo(container);
$('<img/>', {