1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-16 18:15:47 +01:00

Frob some fnords.

This commit is contained in:
Kris Maglione
2008-10-02 06:42:42 +00:00
parent 0a905986d9
commit 76b6c530b1
9 changed files with 187 additions and 176 deletions

View File

@@ -233,7 +233,7 @@ liberator.Bookmarks = function () //{{{
var sh = getWebNavigation().sessionHistory;
let entries = [sh.getEntryAtIndex(i, false) for (i in liberator.util.range(0, sh.count))];
let list = liberator.buffer.template.jumps(sh.index, entries);
let list = liberator.template.jumps(sh.index, entries);
liberator.commandline.echo(list, liberator.commandline.HL_NORMAL, liberator.commandline.FORCE_MULTILINE);
},
{ argCount: "0" });
@@ -482,7 +482,7 @@ liberator.Bookmarks = function () //{{{
if (openItems)
return liberator.open([i[0] for each (i in items)], liberator.NEW_TAB);
let list = liberator.buffer.template.bookmarks("title", (
let list = liberator.template.bookmarks("title", (
{
url: item[0],
title: item[1],
@@ -767,7 +767,7 @@ liberator.History = function () //{{{
}
else
{
let list = liberator.buffer.template.bookmarks("title", (
let list = liberator.template.bookmarks("title", (
{
title: item[1],
url: item[0],
@@ -942,7 +942,7 @@ liberator.QuickMarks = function () //{{{
}
let items = ({title: mark, url: qmarks.get(mark)} for each (mark in marks));
let list = liberator.buffer.template.bookmarks("QuickMark", items);
let list = liberator.template.bookmarks("QuickMark", items);
liberator.commandline.echo(list, liberator.commandline.HL_NORMAL, liberator.commandline.FORCE_MULTILINE);
}
};