1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-27 05:53:31 +01:00

Unbreak :se! completion.

This commit is contained in:
Kris Maglione
2008-12-20 18:40:34 -05:00
parent 872d03808e
commit 1a13d07e9f

View File

@@ -1651,7 +1651,7 @@ function Completion() //{{{
context.anchored = false; context.anchored = false;
context.title = ["Firefox Preference", "Value"]; context.title = ["Firefox Preference", "Value"];
context.keys = { text: function (item) item, description: function (item) options.getPref(item) }; context.keys = { text: function (item) item, description: function (item) options.getPref(item) };
context.completions = service["prefs"].getChildList("", { value: 0 }); context.completions = service["pref"].getChildList("", { value: 0 });
}, },
search: function search(context, noSuggest) search: function search(context, noSuggest)