From 311660dec20401643e456f77a65dc66e3a655cfe Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Mon, 7 Feb 2011 11:38:06 -0600 Subject: 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. --- install/ui/host.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'install/ui/host.js') diff --git a/install/ui/host.js b/install/ui/host.js index cc60fb51..f6af82cb 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 = $('
', { - name: 'kerberos-key-valid' + name: 'kerberos-key-valid', + style: 'display: none;' }).appendTo(container); $('', { @@ -250,7 +251,8 @@ function host_provisioning_status_widget(spec) { }).appendTo(content_div); div = $('
', { - name: 'kerberos-key-missing' + name: 'kerberos-key-missing', + style: 'display: none;' }).appendTo(container); $('', { -- cgit