1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
<script type="text/javascript" language="javascript">
function showpresence(presence)
{
var innerFrame = document.getElementById('innerFrame');
var statusIcon = document.createElement('img');
statusIcon.style.border = 'none';
statusIcon.src = presence.icon.url;
statusIcon.width = presence.icon.width;
statusIcon.height = presence.icon.height;
statusIcon.alt = presence.statusText;
statusIcon.title = presence.statusText;
var displayName = document.createElement('span');
displayName.style.fontFamily = 'Tahoma, Verdana, sans-serif';
displayName.style.fontSize = '10pt';
displayName.title = presence.displayName;
var statusText = document.createElement('span');
statusText.style.fontFamily = 'Tahoma, Verdana, sans-serif';
statusText.style.fontSize = '10pt';
statusText.title = presence.statusText;
var br = document.createElement('br');
innerFrame.appendChild(statusIcon);
innerFrame.appendChild(br);
innerFrame.appendChild(displayName);
innerFrame.appendChild(br);
innerFrame.appendChild(statusText);
if ((displayName.innerText !== undefined)&&(statusText.innerText !== undefined))
{
displayName.innerText = presence.displayName;
statusText.innerText = presence.statusText;
}
else if ((displayName.textContent != undefined)&&(statusText.textContent !== undefined))
{
displayName.textContent == presence.displayName;
statusText.textContent == presence.statusText;
}
}
</script> |
Partager