1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-30 19:52:25 +01:00

Fix broken donate button.

This commit is contained in:
Kris Maglione
2009-10-28 17:00:07 -04:00
parent 42ef3949df
commit 9bb1feb3ce
2 changed files with 2 additions and 2 deletions

View File

@@ -671,7 +671,7 @@ function Tabs() //{{{
context.anchored = false;
context.compare = CompletionContext.Sort.unsorted;
context.filters = [CompletionContext.Filter.textDescription];
context.keys = { text: function ([i, item]) (i + 1) + ": " + item.state.entries[item.state.index - 1].url, description: "[1].title", icon: "[1].image" };
context.keys = { text: function ([i, { state: s }]) (i + 1) + ": " + s.entries[s.index - 1].url, description: "[1].title", icon: "[1].image" };
context.completions = Iterator(tabs.closedTabs);
},
count: true,