From 9aec9f3e6ad62cdfe3e375b6f42005bae7bd1c79 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Fri, 24 Apr 2009 19:27:06 -0400 Subject: [PATCH] Fix #243 --- common/content/completion.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/completion.js b/common/content/completion.js index af9c57a0..974cd7df 100644 --- a/common/content/completion.js +++ b/common/content/completion.js @@ -1699,7 +1699,7 @@ function Completion() //{{{ option: function option(context, scope) { context.title = ["Option"]; - context.keys = { text: "names", description: "description" }; + context.keys = { text: "fullMenuPath", description: function (item) item.getAttribute("label") }; context.completions = options; if (scope) context.filters.push(function ({ item: opt }) opt.scope & scope);