1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-07 03:34:12 +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 file = this.win.location.pathname.split("/").pop() || _("buffer.noName");
let title = this.win.document.title || _("buffer.noTitle"); let title = this.win.document.title || _("buffer.noTitle");
let info = template.map(sections || options["pageinfo"], let info = template.map(
function (opt) template.map(Buffer.pageInfo[opt].action.call(self), util.identity, ", "), (sections || options["pageinfo"])
.map(function (opt) Buffer.pageInfo[opt].action.call(self)),
function (res) res && iter(res).join(", ") || undefined,
", "); ", ");
if (bookmarkcache.isBookmarked(this.URL)) if (bookmarkcache.isBookmarked(this.URL))