1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 11:17:58 +01:00

remove unnecessary   entities from the output of :pageinfo (really this

time)
This commit is contained in:
Doug Kearns
2007-10-30 05:54:15 +00:00
parent 347738ce4e
commit d600a7d6aa

View File

@@ -599,7 +599,7 @@ vimperator.Buffer = function() //{{{
for (var i = 0; i < pageGeneral.length; i++)
{
if (pageGeneral[i][1])
pageInfoText += "<tr><td style='font-weight: bold;'> " + pageGeneral[i][0] + ":&nbsp;</td><td>" + pageGeneral[i][1] + "</td></tr>";
pageInfoText += "<tr><td style='font-weight: bold;'> " + pageGeneral[i][0] + ": </td><td>" + pageGeneral[i][1] + "</td></tr>";
}
pageInfoText += "</table>";
break;
@@ -609,7 +609,7 @@ vimperator.Buffer = function() //{{{
{
for (var i = 0; i < pageMeta.length; i++)
{
pageInfoText += "<tr><td style='font-weight: bold;'> " + pageMeta[i][0] + ":&nbsp;</td><td>" + pageMeta[i][1] + "</td></tr>";
pageInfoText += "<tr><td style='font-weight: bold;'> " + pageMeta[i][0] + ": </td><td>" + pageMeta[i][1] + "</td></tr>";
}
}
else