Fixes for ridiculous IE7 CSS behaviour

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@7297 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Mike Hatfield
2007-11-05 16:39:28 +00:00
parent a75defb600
commit eb989afb99
3 changed files with 53 additions and 37 deletions

View File

@@ -27,7 +27,7 @@ var Presence =
onComplete: function(textResponse, xmlResponse)
{
var statusType = Presence.getStatusType(userDetails[0], textResponse);
status.addClass(statusType);
status.addClass(userDetails[0] + "-" + statusType);
user.addClass(statusType);
if (statusType == "unknown")
{
@@ -44,7 +44,7 @@ var Presence =
}
else
{
status.addClass("unknown");
status.addClass("none");
status.title = "User's presence provider has not been configured by Alfresco admin";
user.title = status.title;
}