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

Merge branch 'master' into vimperator-2.1

This commit is contained in:
Kris Maglione
2009-01-15 15:46:15 -05:00
3 changed files with 6 additions and 5 deletions

View File

@@ -734,7 +734,7 @@ function History() //{{{
{
let sh = window.getWebNavigation().sessionHistory;
context.anchor = false;
context.anchored = false;
context.completions = [sh.getEntryAtIndex(i, false) for (i in util.range(sh.index, 0, true))];
context.keys = { text: function (item) item.URI.spec, description: "title" };
},
@@ -780,7 +780,7 @@ function History() //{{{
{
let sh = window.getWebNavigation().sessionHistory;
context.anchor = false;
context.anchored = false;
context.completions = [sh.getEntryAtIndex(i, false) for (i in util.range(sh.index + 1, sh.count))];
context.keys = { text: function (item) item.URI.spec, description: "title" };
},