From 9bb1feb3ce45af50f518c6de1e90aa3072650c3b Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Wed, 28 Oct 2009 17:00:07 -0400 Subject: [PATCH] Fix broken donate button. --- common/content/help.xsl | 2 +- common/content/tabs.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/content/help.xsl b/common/content/help.xsl index fbab61fc..41f53329 100644 --- a/common/content/help.xsl +++ b/common/content/help.xsl @@ -164,7 +164,7 @@
- +
diff --git a/common/content/tabs.js b/common/content/tabs.js index 34b15d98..4e54cd23 100644 --- a/common/content/tabs.js +++ b/common/content/tabs.js @@ -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,