Fix tooltips in contacts list

This commit is contained in:
Francis Lachapelle
2013-01-31 13:55:57 -05:00
parent 4bcf90c693
commit cd7d410262
3 changed files with 4 additions and 44 deletions
+2
View File
@@ -77,7 +77,9 @@ function contactsListCallback(http) {
row.setAttribute("contactname", contact["c_cn"]);
var cells = row.getElementsByTagName("TD");
$(cells[0]).update(contact["c_cn"]);
cells[0].title = contact["c_cn"];
$(cells[1]).update(contact["c_mail"]);
cells[1].title = contact["c_mail"];
if (fullView) {
$(cells[2]).update(contact["c_screenname"]);
$(cells[3]).update(contact["c_o"]);