Fix for bug 47362. Add tooltip on attachment. R=mscott

This commit is contained in:
ducarroz%netscape.com 2000-08-03 22:28:17 +00:00
Родитель 9cb5e4ebe2
Коммит f99b846942
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -1320,8 +1320,8 @@ function AddAttachment(attachment)
prettyName = msgCompose.AttachmentPrettyName(attachment);
cell.setAttribute("value", prettyName); //use for display only
cell.setAttribute("attachment", attachment); //full url stored here
// cell.setAttribute("tooltip", "aTooltip");
// cell.setAttribute("tooltiptext", unescape(attachment));
cell.setAttribute("tooltip", "aTooltip");
cell.setAttribute("tooltiptext", unescape(attachment));
row.appendChild(cell);
item.appendChild(row);
bucketBody.appendChild(item);