1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-28 02:52:26 +01:00

Closes issue #722.

This commit is contained in:
Kris Maglione
2011-12-05 17:05:43 -05:00
parent 5eff71ec5a
commit 0b03a64e70

View File

@@ -898,8 +898,10 @@ var Buffer = Module("Buffer", {
let file = this.win.location.pathname.split("/").pop() || _("buffer.noName");
let title = this.win.document.title || _("buffer.noTitle");
let info = template.map(sections || options["pageinfo"],
function (opt) template.map(Buffer.pageInfo[opt].action.call(self), util.identity, ", "),
let info = template.map(
(sections || options["pageinfo"])
.map(function (opt) Buffer.pageInfo[opt].action.call(self)),
function (res) res && iter(res).join(", ") || undefined,
", ");
if (bookmarkcache.isBookmarked(this.URL))