1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-08 22:14:12 +01:00

Fix highlighting of :contacts MOW output.

This commit is contained in:
Doug Kearns
2009-06-11 02:40:55 +10:00
parent 494a6c9478
commit 7cdb7e05b0

View File

@@ -202,16 +202,9 @@ function Addressbook() //{{{
}
else
{
let list = ":" + util.escapeHTML(commandline.command) + "<br/>" +
"<table><tr class=\"hl-Title\" align=\"left\"><th>Name</th><th>Address</th></tr>";
for (let i = 0; i < addresses.length; i++)
{
let displayName = util.escapeHTML(util.clip(addresses[i][0], 50));
let mailAddr = util.escapeHTML(addresses[i][1]);
list += "<tr><td>" + displayName + "</td><td style=\"width: 100%\"><a href=\"#\" class=\"hl-URL\">" + mailAddr + "</a></td></tr>";
}
list += "</table>";
let list = template.tabular(["Name", "Address"], [],
[[util.clip(a[0], 50), address[1]] for ([,address] in Iterator(addresses))]
);
commandline.echo(list, commandline.HL_NORMAL, commandline.FORCE_MULTILINE);
}
return true;