1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 13:22:28 +01:00

fix :pageinfo and :time output - use the character entity for NBSP

This commit is contained in:
Doug Kearns
2008-10-20 16:08:23 +00:00
parent 03ed0502c8
commit 03d91c794c
2 changed files with 4 additions and 4 deletions

View File

@@ -1061,7 +1061,7 @@ function Buffer() //{{{
nFeed++;
var type = feedTypes[feed.type] || feedTypes["application/rss+xml"];
if (verbose)
yield [feed.title, template.highlightURL(feed.href, true) + <span class="extra-info">\u00a0({type})</span>];
yield [feed.title, template.highlightURL(feed.href, true) + <span class="extra-info">&#xa0;({type})</span>];
}
}
}