1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 09:48:00 +01:00

Fix :pageinfo.

This commit is contained in:
Kris Maglione
2009-11-10 19:56:02 -05:00
parent e6cbf92ddb
commit f03c6e134e

View File

@@ -684,8 +684,8 @@ const Buffer = Module("buffer", {
let file = content.document.location.pathname.split("/").pop() || "[No Name]";
let title = content.document.title || "[No Title]";
let info = template.map("gf", function (opt)
template.map(this.pageInfo[opt][0](), util.identity, ", "),
let info = template.map("gf",
function (opt) template.map(buffer.pageInfo[opt][0](), util.identity, ", "),
", ");
if (bookmarks.isBookmarked(this.URL))
@@ -698,7 +698,7 @@ const Buffer = Module("buffer", {
let option = sections || options["pageinfo"];
let list = template.map(option, function (option) {
let opt = this.pageInfo[option];
let opt = buffer.pageInfo[option];
if (opt)
return template.table(opt[1], opt[0](true));
}, <br/>);