summaryrefslogtreecommitdiff
path: root/common/content/tabs.js
diff options
context:
space:
mode:
authorKris Maglione <maglione.k@gmail.com>2011-02-04 20:24:50 -0500
committerKris Maglione <maglione.k@gmail.com>2011-02-04 20:24:50 -0500
commite9fd99dafa8e9ed0f479143ad098c96889e31e1b (patch)
tree73f84f68efa16c87f9e48199e176957b0a747dbe /common/content/tabs.js
parent6a3d5dcfceeed29b77eb548fc3d7234c6ece3a00 (diff)
downloadpentadactyl-e9fd99dafa8e9ed0f479143ad098c96889e31e1b.tar.gz
Reset progress indicator on location change.
Diffstat (limited to 'common/content/tabs.js')
-rw-r--r--common/content/tabs.js8
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"]