From 3ba9416185d33911eafb84417cda3472ab0dd328 Mon Sep 17 00:00:00 2001 From: mxi1 Date: Thu, 10 Dec 2009 05:45:40 +0000 Subject: [PATCH] -bug fixing: when the webpage is refreshed, there will be only the black background left to display; git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@4751 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-UI/js/xcatauth.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/xCAT-UI/js/xcatauth.js b/xCAT-UI/js/xcatauth.js index c0b981fed..c04ad5d1c 100644 --- a/xCAT-UI/js/xcatauth.js +++ b/xCAT-UI/js/xcatauth.js @@ -4,6 +4,9 @@ function openlogdialog (data, textstatus) { //open the log in dialog if not logged in if (data.authenticated == "no") { $('#logdialog').dialog("open"); } + else { + $("#wrapper").show(); + } } function onlogin (data, textstatus) {