diff options
author | Kris Maglione <maglione.k@gmail.com> | 2011-02-04 20:24:50 -0500 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2011-02-04 20:24:50 -0500 |
commit | e9fd99dafa8e9ed0f479143ad098c96889e31e1b (patch) | |
tree | 73f84f68efa16c87f9e48199e176957b0a747dbe /common/content/tabs.js | |
parent | 6a3d5dcfceeed29b77eb548fc3d7234c6ece3a00 (diff) | |
download | pentadactyl-e9fd99dafa8e9ed0f479143ad098c96889e31e1b.tar.gz |
Reset progress indicator on location change.
Diffstat (limited to 'common/content/tabs.js')
-rw-r--r-- | common/content/tabs.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/common/content/tabs.js b/common/content/tabs.js index b366c51e..5b129953 100644 --- a/common/content/tabs.js +++ b/common/content/tabs.js @@ -979,7 +979,7 @@ var Tabs = Module("tabs", { config.tabbrowser.tabContainer._positionPinnedTabs(); return value; }, - completer: function (context) [ + values: [ ["never", "Never show the tab bar"], ["multitab", "Show the tab bar when there are multiple tabs"], ["always", "Always show the tab bar"] @@ -1005,7 +1005,7 @@ var Tabs = Module("tabs", { "Define when newly created tabs are automatically activated", "stringlist", [g[0] for (g in values(activateGroups.slice(1))) if (!g[2] || !prefs.get("browser.tabs." + g[2]))].join(","), { - completer: function (context) activateGroups, + values: activateGroups, has: Option.has.toggleAll, setter: function (newValues) { let valueSet = set(newValues); @@ -1022,7 +1022,7 @@ var Tabs = Module("tabs", { "Define which commands should output in a new tab by default", "stringlist", "", { - completer: function (context) [ + values: [ ["all", "All commands"], ["addons", ":addo[ns] command"], ["downloads", ":downl[oads] command"], @@ -1056,7 +1056,7 @@ var Tabs = Module("tabs", { "See 'popups' option."); return values; }, - completer: function (context) [ + values: [ ["tab", "Open popups in a new tab"], ["window", "Open popups in a new window"], ["resized", "Open resized popups in a new window"] |