1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-30 08:52:27 +01:00

tweaked pageinfo output slightly

This commit is contained in:
Martin Stubenschrott
2007-11-12 18:19:57 +00:00
parent 695fd63e91
commit cbc6785802

View File

@@ -618,7 +618,7 @@ vimperator.Buffer = function () //{{{
if (isValidFeed(feed, window.content.document.nodePrincipal, rels.feed))
{
var type = feedTypes[feed.type] || feedTypes["application/rss+xml"];
pageFeeds.push([feed.title, vimperator.util.highlightURL(feed.href, true) + " (" + type + ")"]);
pageFeeds.push([feed.title, vimperator.util.highlightURL(feed.href, true) + " <span style='color: gray;'>(" + type + ")</span>"]);
}
}
}